build: remove base image targets #7
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 | |
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: | |
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 push-images BUILD_RELEASE_TYPE=release |