Skip to content

Commit

Permalink
Update tag when building wheels as well
Browse files Browse the repository at this point in the history
  • Loading branch information
langmm committed Jun 29, 2023
1 parent ebc1f13 commit e89d4d7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,13 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true
- if: needs.params.outputs.releasetag != ''
name: Update tag
run: 'git config user.name "Meagan Lang"
git tag -fa ${{ env.RELEASETAG }} -m "Release override"
'
- if: runner.os == 'Linux'
name: (LINUX) Set up QEMU
uses: docker/setup-qemu-action@v1
Expand Down
5 changes: 5 additions & 0 deletions utils/test-install-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true
- name: Update tag
if: needs.params.outputs.releasetag != ''
run: |
git config user.name "Meagan Lang"
git tag -fa ${{ env.RELEASETAG }} -m "Release override"
- uses: docker/setup-qemu-action@v1
if: runner.os == 'Linux'
Expand Down

0 comments on commit e89d4d7

Please sign in to comment.