Go #334
Workflow file for this run
This file contains hidden or 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: Go | |
on: | |
create: | |
tags: | |
- 'v5*' | |
env: | |
dest: bin | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Set up Env | |
run: echo "version=${GITHUB_REF:11}" >> $GITHUB_ENV | |
- name: Set beta | |
if: contains(env.version, 'beta') | |
run: echo "dest=beta" >> $GITHUB_ENV | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.23.4 | |
- name: Cache Go modules | |
uses: actions/cache@v4 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}−go−${{ hashFiles('**/go.sum') }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v2 | |
if: success() && startsWith(github.ref, 'refs/tags/') | |
with: | |
version: v1.8.3 | |
args: release --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Checkout m7s-import | |
# uses: actions/checkout@v3 | |
# with: | |
# repository: langhuihui/m7s-import | |
# path: m7s-import | |
# persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. | |
# fetch-depth: 0 | |
# - name: Add bin to m7s-import | |
# if: success() && startsWith(github.ref, 'refs/tags/') | |
# run: | | |
# cd m7s-import | |
# mkdir -p apps/m7s-website/src/public/bin | |
# cp ../dist/m7s_${{ env.version }}_windows_amd64.tar.gz apps/m7s-website/src/public/bin/m7s_windows_amd64.tar.gz | |
# cp ../dist/m7s_${{ env.version }}_darwin_amd64.tar.gz apps/m7s-website/src/public/bin/m7s_darwin_amd64.tar.gz | |
# cp ../dist/m7s_${{ env.version }}_darwin_arm64.tar.gz apps/m7s-website/src/public/bin/m7s_darwin_arm64.tar.gz | |
# cp ../dist/m7s_${{ env.version }}_linux_amd64.tar.gz apps/m7s-website/src/public/bin/m7s_linux_amd64.tar.gz | |
# cp ../dist/m7s_${{ env.version }}_linux_arm64.tar.gz apps/m7s-website/src/public/bin/m7s_linux_arm64.tar.gz | |
# ls apps/m7s-website/src/public/bin | |
- name: copy | |
if: success() && startsWith(github.ref, 'refs/tags/') | |
run: | | |
mkdir -p bin | |
cp dist/m7s_${{ env.version }}_windows_amd64.tar.gz bin/m7s_v5_windows_amd64.tar.gz | |
cp dist/m7s_${{ env.version }}_darwin_amd64.tar.gz bin/m7s_v5_darwin_amd64.tar.gz | |
cp dist/m7s_${{ env.version }}_darwin_arm64.tar.gz bin/m7s_v5_darwin_arm64.tar.gz | |
cp dist/m7s_${{ env.version }}_linux_amd64.tar.gz bin/m7s_v5_linux_amd64.tar.gz | |
cp dist/m7s_${{ env.version }}_linux_arm64.tar.gz bin/m7s_v5_linux_arm64.tar.gz | |
ls bin | |
- uses: jakejarvis/s3-sync-action@master | |
# with: | |
# args: --acl public-read --follow-symlinks --delete | |
env: | |
AWS_S3_ENDPOINT: https://${{ secrets.R2_DOMAIN }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.R2_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET }} | |
AWS_S3_BUCKET: monibuca | |
SOURCE_DIR: 'bin' | |
DEST_DIR: ${{ env.dest }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: docker build | |
if: success() && startsWith(github.ref, 'refs/tags/') | |
run: | | |
curl -L https://download.m7s.live/bin/admin.zip -o admin.zip | |
tar -zxvf bin/m7s_v5_linux_amd64.tar.gz | |
mv m7s monibuca_amd64 | |
tar -zxvf bin/m7s_v5_linux_arm64.tar.gz | |
mv m7s monibuca_arm64 | |
docker login -u langhuihui -p ${{ secrets.DOCKER_PASSWORD }} | |
if [[ "${{ env.version }}" == *"beta"* ]]; then | |
docker buildx build --platform linux/amd64,linux/arm64 -t langhuihui/monibuca:v5 --push . | |
else | |
docker buildx build --platform linux/amd64,linux/arm64 -t langhuihui/monibuca:v5 -t langhuihui/monibuca:${{ env.version }} --push . | |
fi | |
- name: docker build lite version | |
if: success() && startsWith(github.ref, 'refs/tags/') | |
run: | | |
if [[ "${{ env.version }}" == *"beta"* ]]; then | |
docker buildx build --platform linux/amd64,linux/arm64 -f DockerfileLite -t monibuca/v5:latest --push . | |
else | |
docker buildx build --platform linux/amd64,linux/arm64 -f DockerfileLite -t monibuca/v5:latest -t monibuca/v5:${{ env.version }} --push . | |
fi |