83 lines
2.3 KiB
YAML
83 lines
2.3 KiB
YAML
on:
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
go-release:
|
|
name: Release Go Binary
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
goos: [linux, windows, darwin]
|
|
goarch: ["386", amd64, "arm", arm64]
|
|
exclude:
|
|
- goarch: "386"
|
|
goos: darwin
|
|
- goarch: "arm"
|
|
goos: darwin
|
|
- goarch: "arm"
|
|
goos: windows
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Release frontend
|
|
uses: wangyoucao577/go-release-action@v1.40
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
goos: ${{ matrix.goos }}
|
|
goarch: ${{ matrix.goarch }}
|
|
project_path: "./frontend"
|
|
binary_name: "bird-lg-go"
|
|
|
|
- name: Release proxy
|
|
uses: wangyoucao577/go-release-action@v1.40
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
goos: ${{ matrix.goos }}
|
|
goarch: ${{ matrix.goarch }}
|
|
project_path: "./proxy"
|
|
binary_name: "bird-lgproxy-go"
|
|
|
|
docker-release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build frontend docker image
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: '{{defaultContext}}:frontend'
|
|
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7
|
|
push: true
|
|
tags: |
|
|
xddxdd/bird-lg-go:latest
|
|
ghcr.io/xddxdd/bird-lg-go:frontend
|
|
|
|
- name: Build proxy docker image
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: '{{defaultContext}}:proxy'
|
|
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7
|
|
push: true
|
|
tags: |
|
|
xddxdd/bird-lgproxy-go:latest
|
|
ghcr.io/xddxdd/bird-lg-go:proxy
|