Release unleash-edge v19.4.0 #42
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build Release - docker debug image for Github container registry | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "**/*.rs" | |
- "**/*.toml" | |
- ".github/workflows/build-debug-docker-release.yaml" | |
tags: | |
- unleash-edge-v[0-9]+.* | |
permissions: | |
id-token: write | |
contents: read | |
packages: write | |
jobs: | |
dockerpublish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install rust | |
run: | | |
rustup set auto-self-update disable | |
rustup toolchain install stable --profile default | |
rustup show | |
- name: Rust cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
prefix-key: "rust-v0-gnu" | |
- name: Install cross (cross compile) | |
run: | | |
cargo install cross | |
- name: Build release for x86_64 | |
run: | | |
cargo build --release --target=x86_64-unknown-linux-gnu | |
- name: Build release for aarch64 | |
run: | | |
cross build --release --target=aarch64-unknown-linux-gnu | |
- name: Setup docker buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker meta configuration (set image and tag) | |
uses: docker/metadata-action@v5 | |
id: meta | |
with: | |
images: | | |
ghcr.io/Unleash/unleash-edge-debug | |
tags: | | |
type=match,pattern=unleash-edge-v(\d+\.\d+.\d+),group=1,prefix=v | |
type=match,pattern=unleash-edge-v(\d+\.\d+).*,group=1,prefix=v | |
- name: Login to Github Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build tag and push images | |
uses: docker/build-push-action@v6 | |
with: | |
file: Dockerfile.debug | |
context: . | |
platforms: linux/arm64,linux/amd64 | |
push: true | |
labels: ${{ steps.meta.outputs.labels }} | |
tags: ${{ steps.meta.outputs.tags }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |