Skip to content

Commit

Permalink
Whats another commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jfinstrom committed Feb 29, 2024
1 parent 78b03db commit d9a8f81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/signrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:
- name: Sign module
run: |
chmod +x ./${{ github.event.repository.name }}/.github/workflows/sign.sh
./${{ github.event.repository.name }}/.github/workflows/sign.sh ${MODULE_RAWNAME} "${{ secrets.GPG_SIGNING_KEY }}" ./${{ github.event.repository.name }}/.github/workflows/exclude.txt
./${{ github.event.repository.name }}/.github/workflows/sign.sh ${{env.MODULE_RAWNAME}} "${{ secrets.GPG_SIGNING_KEY }}" ./${{ github.event.repository.name }}/.github/workflows/exclude.txt
- name: Push signed module to releases
uses: softprops/action-gh-release@v1
with:
files: ${MODULE_RAWNAME}-${MODULE_VERSION}.tar.gz
tag_name: v${MODULE_VERSION}
title: Release ${MODULE_VERSION}
files: ${{env.MODULE_RAWNAME}}-${{env.MODULE_VERSION}}.tar.gz
tag_name: v${env.MODULE_VERSION}
title: Release ${{env.MODULE_VERSION}}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d9a8f81

Please sign in to comment.