diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a15418..2a797e3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,6 +40,12 @@ jobs: name: Build and upload container needs: - setup + - create-release + strategy: + matrix: + version: + - slim-alpine + - cuda runs-on: ubuntu-latest steps: - name: Checkout repository @@ -50,6 +56,6 @@ jobs: registry: ghcr.io username: ${{ secrets.GHCR_USER }} password: ${{ secrets.GHCR_TOKEN }} - dockerfile: Dockerfile + dockerfile: Dockerfile.${{ matrix.version }} image: video2x - tags: latest, ${{ needs.setup.outputs.tag }} + tags: latest, ${{ needs.setup.outputs.tag }}-${{ matrix.version }}