Skip to content

Bump rexml from 3.3.1 to 3.3.2 #72

Bump rexml from 3.3.1 to 3.3.2

Bump rexml from 3.3.1 to 3.3.2 #72

Workflow file for this run

name: Docker
on:
pull_request:
types:
- closed
jobs:
build-and-push-docker:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: 'Login to GitHub Container Registry'
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Store current date
shell: bash
run: echo "BUILD_DATE=$(date +%Y-%m-%d\ %H:%M)" >> $GITHUB_ENV
- name: Build and push
uses: docker/[email protected]
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/ceebeeuk/laughing-sansa/eurovision:latest
build-args: |
BUILD_DATE=${{ env.BUILD_DATE }}
BUILD_TAG=${{github.sha}}
platforms: linux/arm64/v8
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache