Skip to content

Commit

Permalink
updates CI to trigger a nightly build (without deployment to an app s…
Browse files Browse the repository at this point in the history
…tore)
  • Loading branch information
ArquintL authored Nov 15, 2024
1 parent b06979b commit 464c67e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:

create-release:
# this job creates a nightly release or stable draft-release and adds viper-ide.vsix and Viper Tools as release assets
if: github.event_name == 'workflow_dispatch'
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' }}
needs: build-and-test
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -289,6 +289,9 @@ jobs:
shell: bash
run: echo "TAG_NAME=$(date +v-%Y-%m-%d-%H%M)" >> $GITHUB_ENV

- name: Abort test
run: exit 1

# use the following action if nightly releases should eventually be deleted
# - name: Create nightly release
# if: ${{ github.event.inputs.type != 'stable' && github.event.inputs.type != 'rc' }}
Expand Down

0 comments on commit 464c67e

Please sign in to comment.