drawio-export/.gitea/workflows/build.yaml
Алексей Бадяев 99953bd42a
All checks were successful
build / build (push) Successful in 35s
release / release (push) Successful in 31s
Доработан workflow и имена артефактов.
2024-10-11 11:55:16 +07:00

58 lines
1.4 KiB
YAML

name: build
run-name: ${{ gitea.actor }} build MouseSoft Draw.IO Export
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
# container:
# image: git.mousesoft.ru/ms/gitea-runner-images:python-ubuntu-latest
steps:
- name: check-out repository code
uses: https://gitea.com/actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: set-up go
uses: https://gitea.com/actions/setup-go@v3
with:
go-version: ">=1.22"
- name: test
run: make clean vendor lint test
- name: cache
uses: https://gitea.com/actions/cache@v4
with:
path: |
out/*.tar.gz
key: ms_drawio-export_${{ github.sha }}
- name: build amd64 binary
if: steps.cache.outputs.cache-hit != 'true'
run: GOARCH=amd64 make clean build
- name: upload amd64 binary artifact
uses: https://gitea.com/actions/upload-artifact@v3
with:
name: drawio-export-amd64
path: out/bin/*
overwrite: true
- name: build arm64 binary
if: steps.cache.outputs.cache-hit != 'true'
run: GOARCH=arm64 make clean build
- name: upload arm64 binary artifact
uses: https://gitea.com/actions/upload-artifact@v3
with:
name: drawio-export-arm64
path: out/bin/*
overwrite: true