Skip to content

ci: GHA workflow to release image to ghcr.io #2

ci: GHA workflow to release image to ghcr.io

ci: GHA workflow to release image to ghcr.io #2

Workflow file for this run

name: Release
on:
push:
tags:
- "*-d2iq.test.dev*"
# Because variables are not exported, they are not visible by child processes, e.g. make
env:
registry: ghcr.io/mesosphere
jobs:
release:
name: Release
runs-on:
- ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Login to container registry
uses: docker/login-action@v2
with:
registry: ${{ env.registry }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push container image
run: |
make release-ghcr