Skip to content

upd readme

upd readme #2

Workflow file for this run

name: build image and push
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@master
- name: set up docker buildx
uses: docker/setup-buildx-action@master
- name: log in to Docker Hub
uses: docker/login-action@master
with:
username: ${{ secrets.DH_USERNAME }}
password: ${{ secrets.DH_TOKEN }}
- name: build and push
uses: docker/build-push-action@master
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: k0st1an/ansible-base:10