Skip to content

feat: Output clean URL in logs. Export URL to GitHub Actions job summary #8

feat: Output clean URL in logs. Export URL to GitHub Actions job summary

feat: Output clean URL in logs. Export URL to GitHub Actions job summary #8

Workflow file for this run

name: Docker hub
on:
push:
tags:
["v*.**"]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64,amd64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker login
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/[email protected]
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
sokari/allure-docker-deploy:latest
sokari/allure-docker-deploy:${{ github.sha }}