From cad73c8f49382e8528b51ad603f5b0a604109858 Mon Sep 17 00:00:00 2001 From: Dogan Ulus Date: Thu, 21 Sep 2023 22:21:56 +0300 Subject: [PATCH] Add prebuilt cache container build workflow --- .github/workflows/autoware_prebuilt_cache.yml | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/autoware_prebuilt_cache.yml diff --git a/.github/workflows/autoware_prebuilt_cache.yml b/.github/workflows/autoware_prebuilt_cache.yml new file mode 100644 index 0000000..03462eb --- /dev/null +++ b/.github/workflows/autoware_prebuilt_cache.yml @@ -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