Skip to content

Upload release artifacts #16

Upload release artifacts

Upload release artifacts #16

name: Upload release artifacts
on:
workflow_dispatch:
inputs:
release_tag:
description: "The release tag to target"
permissions:
id-token: write
contents: write
packages: write
jobs:
docker-multiplatform-image:
name: "Assemble multi-platform Docker image"
runs-on: ubuntu-latest
steps:
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- uses: int128/docker-manifest-create-action@v1
with:
tags: ${{ github.event_name == 'release' && github.event.release.tag_name || github.event.inputs.release_tag }}
suffixes: |
-x86_64
-arm64
# - name: Assemble and push image
# env:
# RELEASE_TAG: ${{ github.event_name == 'release' && github.event.release.tag_name || github.event.inputs.release_tag }}
# run: |
# docker manifest create \
# ghcr.io/tweag/nickel:$RELEASE_TAG \
# ghcr.io/tweag/nickel:$RELEASE_TAG-x86_64 \
# ghcr.io/tweag/nickel:$RELEASE_TAG-arm64 \
# docker manifest push ghcr.io/tweag/nickel:$RELEASE_TAG