10000 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
Next Next commit
Don't build docker, upload artifacts please
  • Loading branch information
hh committed May 8, 2023
commit 4f84be9c16347ad2273bb1e076945c80f522f461
20 changes: 10 additions & 10 deletions .github/workflows/release.yaml
8000
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,17 @@ jobs:

echo "docker_tag=${image_tag}" >> $GITHUB_OUTPUT

- name: Push Docker image
if: ${{ !github.event.inputs.dry_run && !github.event.inputs.snapshot }}
run: |
set -euxo pipefail
# - name: Push Docker image
# if: ${{ !github.event.inputs.dry_run && !github.event.inputs.snapshot }}
# run: |
# set -euxo pipefail

image_tag="${{ steps.build.outputs.docker_tag }}"
docker push "$image_tag"
# image_tag="${{ steps.build.outputs.docker_tag }}"
# docker push "$image_tag"

latest_tag="ghcr.io/coder/wgtunnel/tunneld:latest"
docker tag "$image_tag" "$latest_tag"
docker push "$latest_tag"
# latest_tag="ghcr.io/coder/wgtunnel/tunneld:latest"
# docker tag "$image_tag" "$latest_tag"
# docker push "$latest_tag"

- name: ls build
run: ls -lh build
Expand All @@ -110,7 +110,7 @@ jobs:
if: ${{ !github.event.inputs.dry_run && !github.event.inputs.snapshot }}
uses: ncipollo/release-action@v1
with:
artifacts: "build/tunneld"
artifacts: "tunnel-*-*"
body: "Docker image: `${{ steps.build.outputs.docker_tag }}`"
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
0