Skip to content

Commit

Permalink
Fixing github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenldl committed Jul 12, 2024
1 parent 80cd6fb commit f120ab3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ jobs:
tar -cvzf docfd-${{ env.GITHUB_TAG }}-${{ env.OS_SHORT_NAME }}.tar.gz docfd
- name: Upload artifacts
if: ${{ github.event_name != 'release' }}
if: ${{ github.ref_name == 'ci-test' }}
uses: actions/upload-artifact@v4
with:
name: docfd-${{ env.GITHUB_TAG }}-${{ env.OS_SHORT_NAME }}.tar.gz
path: docfd-${{ env.GITHUB_TAG }}-${{ env.OS_SHORT_NAME }}.tar.gz

- name: Release
if: ${{ github.event_name == 'release' }}
if: ${{ github.ref_name != 'ci-test' }}
uses: softprops/action-gh-release@v1
with:
files: |
Expand Down

0 comments on commit f120ab3

Please sign in to comment.