Sal 4.4.0 #2
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: Build Release | |
on: | |
release: | |
types: [published] | |
jobs: | |
build-tag: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 'Login to GitHub Container Registry' | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: Build and Push Docker image | |
uses: docker/[email protected] | |
with: | |
context: . | |
push: true | |
tags: ghcr.io/salopensource/sal:${{ github.ref_name }} | |
# Delete this after the 4.4.0 release - we are no longer building the SAML image | |
- name: Build and Push SAML Docker image | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: Dockerfile-SAML | |
push: true | |
tags: ghcr.io/salopensource/sal-saml:${{ github.ref_name }} |