Skip to content

Commit

Permalink
fix: brew version
Browse files Browse the repository at this point in the history
  • Loading branch information
Chronostasys committed Nov 11, 2022
1 parent 12c13d2 commit 372b4e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:
run: |
import os
src = os.environ['OUT_DIR']
dst = "pivot-lang-cibuild${{ github.run_number }}-${{ matrix.config.arch }}.tar.gz"
dst = "pivot-lang-0.1.${{ github.run_number }}-${{ matrix.config.arch }}.tar.gz"
os.system("tar -czvf %s %s" % (dst, src))
shell: python
- name: Set outputs
Expand All @@ -232,11 +232,11 @@ jobs:
- uses: ncipollo/release-action@v1
name: upload
with:
artifacts: "pivot-lang-cibuild${{ github.run_number }}-${{ matrix.config.arch }}.tar.gz"
artifacts: "pivot-lang-0.1.${{ github.run_number }}-${{ matrix.config.arch }}.tar.gz"
allowUpdates: true
replacesArtifacts: false
commit: master
tag: cibuild${{ github.run_number }}
tag: v0.1.${{ github.run_number }}

- name: Release my project to my Homebrew tap
if: ${{ matrix.config.os == 'ubuntu-latest' }}
Expand Down

0 comments on commit 372b4e1

Please sign in to comment.