Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Last try with password #17

Last try with password

Last try with password #17

Workflow file for this run

name: Build and Push Docker image
on:
push:
branches:
- main
jobs:
dockerHub:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
tags: ictu/zap2docker-weekly:latest
secrets: |
"github_token=${{ secrets.DOCKERHUB_TOKEN }}"
dockerHubReadme:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker Hub Readme
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: ictu/zap2docker-weekly