Fix 'unminimize' path #44
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: Create and push a continer image | |
on: | |
push: | |
branches: ["latest"] | |
env: | |
REGISTRY: ghcr.io | |
USER_NAME: zifeitong | |
jobs: | |
build-and-push-image: | |
strategy: | |
matrix: | |
image: [ubuntu-devpack, cuda-devpack] | |
fail-fast: true | |
max-parallel: 1 | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
attestations: write | |
id-token: write | |
steps: | |
- name: Delete old packages | |
uses: actions/delete-package-versions@v5 | |
with: | |
package-name: ${{ matrix.image }} | |
package-type: "container" | |
min-versions-to-keep: 16 | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Log in to the Container registry | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.USER_NAME }}/${{ matrix.image }} | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Build and push Docker image | |
id: push | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: ${{ matrix.image }}.Containerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Generate artifact attestation | |
uses: actions/[email protected] | |
with: | |
subject-name: ${{ env.REGISTRY }}/${{ env.USER_NAME }}/${{ matrix.image }} | |
subject-digest: ${{ steps.push.outputs.digest }} | |
push-to-registry: true |