Skip to content

Commit

Permalink
patch: update rust.yml to build ci ADORSYS-GIS#39 (ADORSYS-GIS#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-segning authored and Christiantyemele committed Apr 9, 2024
1 parent f100028 commit ab6f732
Showing 1 changed file with 43 additions and 2 deletions.
45 changes: 43 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Translator
name: Build Translator v2

on:
push:
Expand All @@ -12,13 +12,54 @@ on:

env:
CARGO_TERM_COLOR: always
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}-translator


jobs:
build:

runs-on: ubuntu-latest

permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v4
- name: Build Translator
run: cd power-pay-translator && cargo build --verbose && cargo test --verbose
run: cd power-pay-translator && cargo build --verbose && cargo test --verbose

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to the Docker registry
id: login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- id: lowercase_image_name
name: Lowercase image name
uses: AsZc/change-string-case-action@v6
with:
string: ${{ env.IMAGE_NAME }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ steps.lowercase_image_name.outputs.lowercase }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./power-pay-translator
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit ab6f732

Please sign in to comment.