From 8e2ddb36971d71c37258cff66027e6a60c4f3729 Mon Sep 17 00:00:00 2001 From: BartekDymowski Date: Wed, 24 May 2023 11:18:46 +0200 Subject: [PATCH] Added missing tag name in build checksums file --- .github/workflows/release.yml | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df4af7d..99e0707 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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