Skip to content

Commit

Permalink
Add prebuilt cache container build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
doganulus committed Sep 21, 2023
1 parent cd6c457 commit cad73c8
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/autoware_prebuilt_cache.yml
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

0 comments on commit cad73c8

Please sign in to comment.