chore: improve Cargo.toml
with metadata, lints, compilation flags, …
#46
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: Publish Docker Image | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | |
cancel-in-progress: true | |
env: | |
IMAGE_NAME: commune | |
jobs: | |
publish_image: | |
name: Publish image | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Rust Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
targets: x86_64-unknown-linux-musl | |
- name: Setup Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Setup Rust Target | |
run: rustup target add x86_64-unknown-linux-musl | |
- name: Setup Zig | |
uses: goto-bus-stop/[email protected] | |
- name: Install ZigBuild | |
run: cargo install cargo-zigbuild | |
- name: Install Build Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install \ | |
pkg-config \ | |
libssl-dev | |
- name: Install Just | |
uses: extractions/setup-just@v1 | |
- name: Build Image | |
run: just docker_build_image | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish image to GitHub Container Registry | |
run: just docker_publish_image |