Skip to content

Commit

Permalink
test gh
Browse files Browse the repository at this point in the history
  • Loading branch information
laktak committed Jul 3, 2024
1 parent 46cd331 commit 5ac9cc6
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
shell: bash
run: |
python -m pip install --upgrade pip
python -m pip install pipenv pyinstaller==6.2.0
python -m pip install pipenv pyinstaller==6.6.0
pipenv install
rm -rf build dist
Expand Down Expand Up @@ -76,9 +76,23 @@ jobs:
path: dist/chkbit*.zip


publish:
hashes:
runs-on: ubuntu-latest
needs: build
- uses: MCJack123/ghaction-generate-release-hashes@v3
with:
hash-type: sha256
file-name: hashes.txt
get-assets: true
- uses: actions/upload-artifact@v4
with:
name: Asset-Hashes
path: hashes.txt


publish:
runs-on: ubuntu-latest
needs: hashes
if: ${{ startsWith(github.ref, 'refs/tags/v') }}

steps:
Expand Down

0 comments on commit 5ac9cc6

Please sign in to comment.