Skip to content

Fix eslint

Fix eslint #84

Workflow file for this run

name: Build
env:
PYTHON_VERSION: '3.12'
TZ: Europe/Zurich
on:
push:
branches:
- 'master'
- '*.x'
pull_request:
branches:
- 'master'
- '*.x'
types:
- opened
- reopened
- synchronize
- labeled
workflow_dispatch:
inputs:
add-version-suffix:
type: boolean
default: true
description: Append version suffix
permissions:
contents: read
jobs:
build:
name: Build plugins ๐Ÿ—
uses: indico/indico-gh-actions/.github/workflows/build-plugins.yml@master
with:
directory: cern
extra-plugins-repo: indico/indico-plugins
extra-plugins-dir: public
add-version-suffix: ${{ github.event_name != 'workflow_dispatch' || inputs.add-version-suffix }}
bundle:
name: Bundle wheels ๐Ÿ“ฆ
needs: build
runs-on: ubuntu-22.04
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
merge-multiple: true
pattern: plugin-wheel-*
path: dist
- name: List artifacts ๐Ÿ“ƒ
run: ls -al dist/
- uses: actions/upload-artifact@v4
name: Upload build artifacts ๐Ÿ“ฆ
with:
name: plugin-wheels
retention-days: 7
path: dist
- name: Delete individual artifacts ๐Ÿšฎ
uses: geekyeggo/delete-artifact@v5
with:
name: plugin-wheel-*