Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: erebe/wstunnel
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v10.1.4
Choose a base ref
...
head repository: erebe/wstunnel
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ on:
branches: [ "main" ]

env:
RUST_VERSION: 1.80.1
RUST_VERSION: 1.83.0
BIN_NAME: "wstunnel"

jobs:
@@ -137,7 +137,7 @@ jobs:
with:
command: build
use-cross: ${{ !contains(matrix.platform.target, 'x86_64') || contains(matrix.platform.target, 'freebsd') }}
args: ${{ matrix.platform.build-args }} --target ${{ matrix.platform.target }}
args: ${{ matrix.platform.build-args }} --package wstunnel-cli --target ${{ matrix.platform.target }}

- name: Store artifact
uses: actions/upload-artifact@v4
@@ -174,7 +174,7 @@ jobs:
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
version: '~> v1'
args: release --clean --skip=validate
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
Loading