Merge pull request #3 from mesosphere/shalin/gha-release #6
Workflow file for this run
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: Release to ghcr.io | |
on: | |
push: | |
tags: | |
- "*-d2iq.*" | |
# Because variables are not exported, they are not visible by child processes, e.g. make | |
env: | |
registry: ghcr.io/mesosphere | |
jobs: | |
release-image: | |
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 |