Skip to content

Commit

Permalink
Merge pull request #28 from wiemanboy/feature/fix/release-workflow
Browse files Browse the repository at this point in the history
FIX: release workflow
  • Loading branch information
wiemanboy authored Sep 20, 2024
2 parents 65096d3 + 05c427e commit ba59707
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ jobs:
git init
git add .
git commit -m "Compile ${{ github.event.repository.name }} SCSS v${{ steps.get_version.outputs.result }} build #${{ github.run_number }}"
git commit -m "Compile ${{ github.event.repository.name }} SCSS v${{ env.VERSION }} build #${{ github.run_number }}"
git push -f origin $OUTPUT_BRANCH
- name: Create release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.TOKEN }}"
automatic_release_tag: ${{ steps.get_version.outputs.result }}
automatic_release_tag: ${{ env.VERSION }}
prerelease: false
title: "${{ github.event.repository.name }} v${{ steps.get_version.outputs.result }}"
title: "${{ github.event.repository.name }} v${{ env.VERSION }}"
files: ${{ env.OUTPUT }}

0 comments on commit ba59707

Please sign in to comment.