Skip to content

Commit

Permalink
chore: deploy on pushes too
Browse files Browse the repository at this point in the history
  • Loading branch information
npazosmendez committed Sep 30, 2024
1 parent 90cdaf4 commit 2cf8da2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Store version
run: git describe --tags --always | sed 's/^v//' > build/version.txt
- name: Upload package artifacts
if: github.ref_type == 'tag'
if: github.event_name == 'push'
uses: actions/upload-artifact@v4
with:
include-hidden-files: true
Expand All @@ -65,7 +65,7 @@ jobs:
deploy:
needs: build
runs-on: ubuntu-latest
if: github.ref_type == 'tag'
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
- name: Download package artifacts
Expand Down

0 comments on commit 2cf8da2

Please sign in to comment.