Skip to content

Commit

Permalink
Merge pull request #105 from tooploox/Fix-build-checksums-filename
Browse files Browse the repository at this point in the history
Added missing tag name in build checksums file
  • Loading branch information
bart84ek authored May 24, 2023
2 parents a607bc5 + 8e2ddb3 commit d3f1adc
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,25 +42,24 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: dist-arm
- run: sha256sum oya_* | tee oya_SHA256SUMS
- run: sha256sum oya_* | tee oya_${GITHUB_REF_NAME}_SHA256SUMS
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: oya_*
fail_on_unmatched_files: true


# TODO: If there is a time and need (and way/os to testit) we can try to migrate to GHActions
# build-installer:
# docker:
# - image: scottyhardy/docker-wine:latest
# steps:
# - checkout
# - run: apt-get update && apt-get install -y wget curl zip osslsigncode
# - run: wget https://github.com/mozilla/sops/releases/download/3.3.1/sops_3.3.1_amd64.deb
# - run: dpkg -i sops_3.3.1_amd64.deb
# - run: curl https://oya.sh/get | bash
# - run: oya run -r fetchBinary
# - run: oya run -r buildInstaller
# - run: oya run -r signInstaller
# - run: oya run -r releaseInstaller
# TODO: If there is a time and need (and way/os to testit) we can try to migrate to GHActions
# build-installer:
# docker:
# - image: scottyhardy/docker-wine:latest
# steps:
# - checkout
# - run: apt-get update && apt-get install -y wget curl zip osslsigncode
# - run: wget https://github.com/mozilla/sops/releases/download/3.3.1/sops_3.3.1_amd64.deb
# - run: dpkg -i sops_3.3.1_amd64.deb
# - run: curl https://oya.sh/get | bash
# - run: oya run -r fetchBinary
# - run: oya run -r buildInstaller
# - run: oya run -r signInstaller
# - run: oya run -r releaseInstaller

0 comments on commit d3f1adc

Please sign in to comment.