access log #13
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 on push to bug/WI-67-connection-issues | |
on: | |
push: | |
branches: [ bug/WI-67-connection-issues ] | |
jobs: | |
build_commit: | |
runs-on: ubuntu-latest | |
environment: docker | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get shortsha | |
id: vars | |
run: | | |
if [ -z "$EVENT_SHA" ]; then SHORT_SHA=${GITHUB_SHA::8}; else SHORT_SHA=${EVENT_SHA::8}; fi | |
echo ::set-output name=sha_short::${SHORT_SHA} | |
env: | |
EVENT_SHA: ${{ github.event.client_payload.sha }} | |
- name: Print shortsha | |
run: | | |
echo $SHORTSHA | |
env: | |
SHORTSHA: ${{ steps.vars.outputs.sha_short }} | |
- uses: mr-smithers-excellent/docker-build-push@v3 | |
name: Build & push commit tagged Docker image | |
with: | |
image: ${{ secrets.DOCKERHUB_REPO }} | |
tag: ${{ steps.vars.outputs.sha_short }} | |
registry: docker.io | |
dockerfile: Dockerfile | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- uses: mr-smithers-excellent/docker-build-push@v3 | |
name: Build & push commit tagged Docker image | |
with: | |
image: ${{ secrets.DOCKERHUB_REPO }} | |
tag: latest | |
registry: docker.io | |
dockerfile: Dockerfile | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} |