🔨 refactor: Update modules in examples #1
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 images indy | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USER }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push Node | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker-images/indy | |
file: ./docker-images/indy/indy-node.dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USER }}/fogbed-indy-node:${{ github.ref_name }} | |
- name: Build and push Cli | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker-images/indy | |
file: ./docker-images/indy/indy-cli.dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USER }}/fogbed-indy-cli:${{ github.ref_name }} | |
- name: Build and push Webserver | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker-images/indy | |
file: ./docker-images/indy/webserver.dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USER }}/fogbed-indy-webserver:${{ github.ref_name }} | |
- name: Build and push httpd | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./docker-images/indy | |
file: ./docker-images/indy/httpd.dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USER }}/fogbed-httpd:${{ github.ref_name }} |