Skip to content

Commit

Permalink
Fix publishing action
Browse files Browse the repository at this point in the history
  • Loading branch information
StefMa authored Jan 2, 2025
1 parent 2e50719 commit 3008e0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publishing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Create and push tag
run: |
git tag ${{ inputs.version }}
git push origin ${{ github.events.inputs.version }}
git push origin ${{ github.event.inputs.version }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down Expand Up @@ -55,6 +55,6 @@ jobs:
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.events.inputs.version }}
tag_name: ${{ github.event.inputs.version }}
name: ${{ github.event.inputs.version }}
draft: true
draft: true

0 comments on commit 3008e0f

Please sign in to comment.