Skip to content

Go auto release workflows #47

Go auto release workflows

Go auto release workflows #47

Workflow file for this run

name: "docker"
on:
push:
branches:
- main
- release/v*
paths-ignore:
- '.github/**'
- 'docs/**'
- 'examples/**'
- 'test/**'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: "Checkout source code at current commit"
uses: actions/checkout@v4
- name: Build
id: build
uses: cloudposse/[email protected]
with:
registry: registry-1.docker.io
organization: "${{ github.event.repository.owner.login }}"
repository: "${{ github.event.repository.name }}"
login: "${{ secrets.DOCKERHUB_USERNAME }}"
password: "${{ secrets.DOCKERHUB_PASSWORD }}"
platforms: linux/amd64,linux/arm64
release:
if: github.event_name == 'push'
needs: build-and-push
uses: cloudposse/.github/.github/workflows/shared-go-auto-release.yml@main
with:
publish: true
secrets: inherit