Skip to content

Commit

Permalink
chore(tag): use reference as tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
hahnec committed Mar 18, 2024
1 parent efcc858 commit b99ba8c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/gh_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,14 +188,19 @@ jobs:
pip install pyinstaller --upgrade
plenopticam/scripts/bundling/py2exe.bat
plenopticam/scripts/bundling/msi_auto-gen.bat
- name: Create tag in public repository
run: |
cd ${{github.workspace}}/plenopticam
git tag ${{ steps.get_tag.outputs.tag }}
git push --tags --porcelain
- name: Create Release
if: matrix.os == 'ubuntu-latest'
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
tag_name: ${{ steps.get_tag.outputs.tag }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: true
Expand Down

0 comments on commit b99ba8c

Please sign in to comment.