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: Publish Docker image for new releases | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
main: | |
name: Push Integritee Node to Dockerhub | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
binary: ["integritee-node"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download ${{ matrix.binary }} from release | |
uses: dsaltares/fetch-gh-release-asset@master | |
with: | |
version: "tags/${{ github.event.release.tag_name }}" | |
file: "${{ matrix.binary }}" | |
target: "integritee-node" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Cache Docker layers | |
uses: actions/cache@v2 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Login to Dockerhub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
with: | |
push: true | |
context: . | |
tags: | | |
integritee/${{ matrix.binary }}:latest | |
integritee/${{ matrix.binary }}:${{ github.event.release.tag_name }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} | |
- name: Slack Notification | |
uses: 8398a7/action-slack@v3 | |
if: failure() | |
with: | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took # selectable (default: repo,message) | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |