Skip to content

Commit

Permalink
Authenticate when downloading draft release assets
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Cole <adrian@tetrate.io>
  • Loading branch information
Adrian Cole committed Oct 11, 2021
1 parent cd73f91 commit d030d5b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: |
gh release download "${GITHUB_REF#refs/tags/}" -p '${{ matrix.pattern }}'
${{ matrix.unzip || 'tar -xzf *.tar.gz && rm *.tar.gz' }}
env: # authenticate as the release is a draft
env: # authenticate release downloads as drafts are not public
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: "Run e2e tests using draft `func-e` binary"
Expand All @@ -102,11 +102,14 @@ jobs:
run: |
gh release download "${GITHUB_REF#refs/tags/}" -p '*linux_amd64.deb' -D dist
packaging/nfpm/verify_deb.sh
env: # authenticate release downloads as drafts are not public
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: "Test RPM package (CentOS)"
if: runner.os == 'Linux'
run: |
run: | # Note: the naming convention is intentionally different for RPM: x86_64 not amd64!
gh release download "${GITHUB_REF#refs/tags/}" -p '*linux_x86_64.rpm' -D dist
docker run --rm -v $PWD:/work --entrypoint packaging/nfpm/verify_rpm.sh ${CENTOS_IMAGE}
env: # CENTOS_IMAGE was built by internal-images.yaml
CENTOS_IMAGE: ghcr.io/tetratelabs/func-e-internal:centos-8
env: # authenticate release downloads as drafts are not public
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CENTOS_IMAGE: ghcr.io/tetratelabs/func-e-internal:centos-8 # See internal-images.yaml

0 comments on commit d030d5b

Please sign in to comment.