8000 Add tunnel and tunneld binaries for other platforms by hh · Pull Request #15 · coder/wgtunnel · GitHub
[go: up one dir, main page]

Skip to content

Add tunnel and tunneld binaries for other platforms #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Ensure we release tunneld + tunnel binaries
  • Loading branch information
hh committed May 9, 2023
commit ff6ebf9129165a42fbf9e0428bd31c8aa597bca1
9 changes: 8 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
if: ${{ !github.event.inputs.dry_run && !github.event.inputs.snapshot }}
uses: ncipollo/release-action@v1
with:
artifacts: "tunnel-*-*"
artifacts: "tunnel*-*-*"
body: "Docker image: `${{ steps.build.outputs.docker_tag }}`"
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -120,6 +120,13 @@ jobs:
with:
name: release-artifacts
path: |
./tunneld-darwin-amd64
./tunneld-darwin-arm64
./tunneld-linux-arm64
./tunneld-linux-amd64
./tunneld-linux-armv7
./tunneld-windows-arm64
./tunneld-windows-amd64
./tunnel-darwin-amd64
./tunnel-darwin-arm64
./tunnel-linux-arm64
Expand Down
0