Getting eepy now...
This commit is contained in:
parent
f392042b99
commit
15a2f4bd5f
@ -17,10 +17,10 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action
|
uses: docker/setup-buildx-action@v4
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install zstd
|
- name: Install zstd
|
||||||
run: sudo apt-get update && sudo apt-get install -y zstd
|
run: sudo apt-get update && sudo apt-get install -y zstd
|
||||||
@ -32,7 +32,7 @@ jobs:
|
|||||||
cat hash.txt
|
cat hash.txt
|
||||||
|
|
||||||
- name: Cache
|
- name: Cache
|
||||||
uses: actions/cache
|
uses: actions/cache@v4
|
||||||
id: cache
|
id: cache
|
||||||
with:
|
with:
|
||||||
save-always: true
|
save-always: true
|
||||||
@ -45,14 +45,14 @@ jobs:
|
|||||||
key: ${{ runner.os }}-cache-${{ steps.cargo-cache-key.outputs.hash }}
|
key: ${{ runner.os }}-cache-${{ steps.cargo-cache-key.outputs.hash }}
|
||||||
|
|
||||||
- name: Login to Gitea
|
- name: Login to Gitea
|
||||||
uses: docker/login-action
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.toast-server.net
|
registry: git.toast-server.net
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_TOKEN }}
|
password: ${{ secrets.DOCKER_TOKEN }}
|
||||||
|
|
||||||
- name: Set up Rust toolchain
|
- name: Set up Rust toolchain
|
||||||
uses: actions-rust-lang/setup-rust-toolchain
|
uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
rustflags: -C target-feature=-crt-static
|
rustflags: -C target-feature=-crt-static
|
||||||
|
|
||||||
@ -69,7 +69,7 @@ jobs:
|
|||||||
cargo zigbuild --target x86_64-unknown-linux-musl --locked -rF production
|
cargo zigbuild --target x86_64-unknown-linux-musl --locked -rF production
|
||||||
|
|
||||||
- name: Build and push image
|
- name: Build and push image
|
||||||
uses: docker/build-push-action
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
@ -84,7 +84,7 @@ jobs:
|
|||||||
needs: build
|
needs: build
|
||||||
steps:
|
steps:
|
||||||
- name: Deploy update
|
- name: Deploy update
|
||||||
uses: appleboy/ssh-action
|
uses: appleboy/ssh-action@v1.2.0
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.SSH_HOST }}
|
host: ${{ secrets.SSH_HOST }}
|
||||||
username: ${{ secrets.SSH_USERNAME }}
|
username: ${{ secrets.SSH_USERNAME }}
|
||||||
|
Loading…
Reference in New Issue
Block a user