-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add prebuilt cache container build workflow
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
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 |