Skip to content

feat(github-release)!: Update pre-commit/pre-commit ( v3.8.0 → v4.0.0… #82

feat(github-release)!: Update pre-commit/pre-commit ( v3.8.0 → v4.0.0…

feat(github-release)!: Update pre-commit/pre-commit ( v3.8.0 → v4.0.0… #82

Workflow file for this run

---
name: "Release: rust-arch"
on:
workflow_dispatch:
# inputs:
# version:
# description: Version to build
# default: "latest"
# required: true
push:
branches:
- main
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
name: Build rust-arch
runs-on: ubuntu-latest
steps:
- name: Setup Tools
shell: bash
run: |
sudo apt-get -qq update && \
sudo apt-get -qq install --no-install-recommends -y curl unzip gcc g++ git
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 1
- name: Login to GHCR
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_PASSWORD }}
- name: Setup workflow Variables
id: vars
shell: bash
run: |-
VERSION="latest"
if test "$GITHUB_EVENT_NAME" == "workflow_dispatch"; then
VERSION=$(cat VERSION)
fi
echo "::set-output name=version::$VERSION"
echo "::set-output name=tag_version::rust-arch:$VERSION"
- name: Setup Docker Buildx
id: buildx
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
- name: Build container image
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6
with:
build-args: |-
VERSION=${{ steps.vars.outputs.version }}
context: .
platforms: linux/amd64 # load does not support muti-arch https://github.com/docker/buildx/issues/290
file: Dockerfile
push: true
tags: |-
ghcr.io/${{ github.repository_owner }}/${{ steps.vars.outputs.tag_version }}
cache-from: type=gha
cache-to: type=gha,mode=max