Skip to content

Commit

Permalink
fix(cd): Tag not found on release step
Browse files Browse the repository at this point in the history
  • Loading branch information
Marconi Gomes authored Sep 9, 2023
1 parent 3f05265 commit 3b73a27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:
name: watchdog-build
path: watchdog.zip
create_release:
name: Create repository release
name: Create release
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ inputs.tag }}
ref: ${{ inputs.tag || 'latest' }}
- uses: actions/download-artifact@v2
with:
name: watchdog-build
Expand All @@ -49,7 +49,7 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: 'watchdog.zip'
tag: ${{ inputs.tag }}
tag: ${{ inputs.tag || 'latest' }}
replacesArtifacts: true
allowUpdates: true\\
bodyFile: "install_instructions.md"

0 comments on commit 3b73a27

Please sign in to comment.