diff --git a/.github/workflows/Zip-it.yml b/.github/workflows/Zip-it.yml index 00fa7cc..8c02df5 100644 --- a/.github/workflows/Zip-it.yml +++ b/.github/workflows/Zip-it.yml @@ -6,7 +6,6 @@ name: CI on: # Triggers the workflow on push or pull request events but only for the bash branch push: - if: startsWith(github.ref, 'refs/tags') branches: [ master ] tags: [ '*' ] @@ -16,8 +15,9 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build" - build: + release: # The type of runner that the job will run on + if: startsWith(github.ref, 'refs/tags') runs-on: ubuntu-latest # Steps represent a sequence of tasks that will be executed as part of the job