We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b81f7dd commit 29946d3Copy full SHA for 29946d3
.github/workflows/release.yaml
@@ -34,15 +34,15 @@ jobs:
34
35
- name: fetch and upload envoy (linux)
36
env:
37
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
run: |
39
./scripts/fetch-envoy ${{ steps.tagName.outputs.tag }} linux amd64
40
./scripts/fetch-envoy ${{ steps.tagName.outputs.tag }} linux arm64
41
gh release upload ${{ steps.tagName.outputs.tag }} bin/envoy-linux-* --clobber
42
43
- name: fetch and upload our built envoy (darwin)
44
45
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN}}
46
47
gh release download -R pomerium/envoy-build ${{ steps.tagName.outputs.tag }}
48
gh release upload ${{ steps.tagName.outputs.tag }} envoy-darwin-* --clobber
0 commit comments