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 Image | |
on: | |
push: | |
branches: | |
- dev | |
tags: | |
- '*' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: all | |
- name: Set up docker buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
version: latest | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Login to Github Package | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: Dreamacro | |
password: ${{ secrets.PACKAGE_TOKEN }} | |
- name: Build dev branch and push | |
if: github.ref == 'refs/heads/dev' | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 | |
push: true | |
tags: 'dreamacro/clash:dev,ghcr.io/dreamacro/clash:dev' | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Get all docker tags | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: actions/github-script@v6 | |
id: tags | |
with: | |
script: | | |
const ref = context.payload.ref.replace(/\/?refs\/tags\//, '') | |
const tags = [ | |
'dreamacro/clash:latest', | |
`dreamacro/clash:${ref}`, | |
'ghcr.io/dreamacro/clash:latest', | |
`ghcr.io/dreamacro/clash:${ref}` | |
] | |
return tags.join(',') | |
result-encoding: string | |
- name: Build release and push | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 | |
push: true | |
tags: ${{steps.tags.outputs.result}} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |