build(precompiled): make a bundle with the dependencies #265
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: Build cross-platform docker image | |
on: | |
push: | |
branches: | |
- 'enhanced' | |
paths: | |
- '.github/workflows/push-docker.yml' | |
- 'precompiled/**' | |
- 'server.crt' | |
- 'server.key' | |
release: | |
types: | |
- published | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7 | |
image: pan93412/unblock-netease-music-enhanced | |
develop_tag: latest | |
released_tag: release | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get the current tag name | |
uses: olegtarasov/[email protected] | |
id: tagName | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push the latest version | |
uses: docker/build-push-action@v6 | |
if: github.event_name != 'release' | |
with: | |
context: . | |
platforms: ${{ env.platforms }} | |
push: true | |
tags: ${{ env.image }}:${{ env.develop_tag }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Build and push the released version | |
uses: docker/build-push-action@v6 | |
if: github.event_name == 'release' | |
with: | |
context: . | |
platforms: ${{ env.platforms }} | |
push: true | |
tags: >- | |
${{ env.image }}:${{ env.develop_tag }}, | |
${{ env.image }}:${{ env.released_tag }}, | |
${{ env.image }}:${{ steps.tagName.outputs.tag }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |