TN-3298 EMPRO post intervention questionnaire - add delayed response #2002
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
# docker continuous delivery | |
# deliver docker images to configured repo with tags to match branches and git tags | |
--- | |
name: Build & Deliver | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git commit | |
uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
- name: Set version environment variable | |
run: echo "PORTAL_VERSION="$(python setup.py --version)"" >> $GITHUB_ENV | |
- name: Publish to GitHub Container Registry | |
# TODO: pin to hash | |
uses: elgohr/Publish-Docker-Github-Action@main | |
with: | |
name: ${{ github.repository }} | |
registry: ghcr.io | |
dockerfile: docker/Dockerfile | |
context: ./ | |
# configured at repo settings/secrets | |
# GitHub Username | |
username: ${{ secrets.DOCKER_USERNAME }} | |
# GitHub personal access token | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
# push tags/release by their git name | |
tag_names: true |