Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KacperMalachowski committed Feb 24, 2024
1 parent a6a7be1 commit a1fe6b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,17 +78,17 @@ jobs:
uses: actions/download-artifact@v4
with:
path: artifacts
- run: tree artifacts
- name: Create release tag
id: create_release
run: |
TAG="v$(date +'%d%m%Y')-$(echo ${{ github.sha }} | cut -c1-8)"
echo "Creating release tag $TAG"
echo "::set-output name=tag::$TAG"
- run: mv ./artifacts/**/marshaller-*
- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: ./artifacts/**/marshaller-*
artifacts: ./marshaller-*
generateReleaseNotes: true
tag: ${{ steps.create_release.outputs.tag }}

0 comments on commit a1fe6b1

Please sign in to comment.