diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 640d6bd8..d1ad5df5 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,4 +1,4 @@ -name: Build Translator +name: Build Translator v2 on: push: @@ -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 \ No newline at end of file + 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 }}