Added an email to get around the DKIM attachment nonsense #14
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: Tabroom Mason Publish | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
CI: true | |
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} | |
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Docker Tag by commit | |
id: get_version | |
run: echo COMMIT_VERSION=$(echo $GITHUB_SHA) >> $GITHUB_ENV | |
- name: Publish Tabroom Mason image to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v4 | |
with: | |
name: nsda/mason | |
username: ${{ secrets.REGISTRY_USERNAME }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
registry: registry.speechanddebate.org | |
tags: "${{ env.COMMIT_VERSION }}" | |
- name: If image was published change icon | |
if: success() | |
run: echo "SLACK_ICON=:white_check_mark:" >> $GITHUB_ENV | |
- name: Send slack notification | |
uses: speechanddebate/action-slack-notify@master |