Add prebuilt cache container build workflow #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Autoware prebuilt cache image | |
on: | |
workflow_dispatch: | |
# schedule: | |
# - cron: '41 12 * * *' # Every day at 12:41 UTC | |
push: | |
paths: | |
- containers/autoware-prebuilt-cache/Dockerfile | |
- .github/workflows/autoware_prebuilt_cache.yml # Self-trigger | |
jobs: | |
autoware-prebuilt-cache: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: bounverif/autoware-prebuilt-cache | |
VERSION: latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to the registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push image | |
uses: docker/build-push-action@v4 | |
with: | |
context: containers/autoware-prebuilt-cache | |
build-args: | | |
--no-cache | |
VERSION=${{ env.VERSION }} | |
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }} | |
push: true |