Skip to content

Commit

Permalink
Merge pull request #64 from pomerium/fix-token
Browse files Browse the repository at this point in the history
Use apparator's token to fetch release artifacts
  • Loading branch information
gaurdro authored Dec 17, 2024
2 parents b81f7dd + f503557 commit 7f9413f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ jobs:
- name: fetch and upload envoy (linux)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./scripts/fetch-envoy ${{ steps.tagName.outputs.tag }} linux amd64
./scripts/fetch-envoy ${{ steps.tagName.outputs.tag }} linux arm64
gh release upload ${{ steps.tagName.outputs.tag }} bin/envoy-linux-* --clobber
- name: fetch and upload our built envoy (darwin)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
GH_TOKEN: ${{ secrets.APPARITOR_GITHUB_TOKEN }}
run: |
gh release download -R pomerium/envoy-build ${{ steps.tagName.outputs.tag }}
gh release upload ${{ steps.tagName.outputs.tag }} envoy-darwin-* --clobber

0 comments on commit 7f9413f

Please sign in to comment.