Skip to content
Merged
Changes from all commits
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
14 changes: 8 additions & 6 deletions .github/workflows/release.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,6 +21,7 @@ jobs:
- uses: actions/setup-go@v7
with:
go-version: '1.22'
cache-dependency-path: go/go.sum
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: "1.85"
Expand DownExpand Up@@ -77,6 +78,7 @@ jobs:
- uses: actions/setup-go@v7
with:
go-version: '1.22'
cache-dependency-path: go/go.sum
- name: Build Go binary
run: |
cd go && go build \
Expand All@@ -92,13 +94,13 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to GHCR
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Go Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: go
file: go/Dockerfile
Expand DownExpand Up@@ -156,13 +158,13 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to GHCR
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Rust Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: rs
file: rs/Dockerfile
Expand DownExpand Up@@ -226,13 +228,13 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to GHCR
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push TypeScript Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: ts
file: ts/Dockerfile
Expand Down