Skip to content

Commit

Permalink
add wf to build ci image with rust (#380)
Browse files Browse the repository at this point in the history
Co-authored-by: Magorsky <[email protected]>
  • Loading branch information
Magorsky and Magorsky authored Jun 2, 2024
1 parent 014ad3b commit 9d0a21a
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/BuildRustImage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build Rust Stable Image

on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
IMAGE_PREFIX: ci-rust
DEFAULT_TOOLCHAIN: 1.78.0
REGISTRY: ghcr.io/${{ github.repository }}

jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Log in to the github container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push image
uses: docker/build-push-action@v5
with:
context: docker
file: rust_ci.Dockerfile
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_PREFIX }}:${{ env.DEFAULT_TOOLCHAIN }}

0 comments on commit 9d0a21a

Please sign in to comment.