chore(tooling): add build and release actions workflow steps
All checks were successful
/ build (push) Successful in 26s
All checks were successful
/ build (push) Successful in 26s
This commit is contained in:
parent
76b31ba945
commit
5b3aa541f5
1 changed files with 50 additions and 11 deletions
|
@ -4,21 +4,60 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
fmt:
|
||||
#fmt:
|
||||
# runs-on: 'self-hosted'
|
||||
# steps:
|
||||
# - uses: 'actions/checkout@v4'
|
||||
# - uses: 'actions/setup-go@v5'
|
||||
# with:
|
||||
# go-version-file: 'go.mod'
|
||||
# - run: |
|
||||
# make tidy no-dirty
|
||||
#test:
|
||||
# runs-on: 'self-hosted'
|
||||
# steps:
|
||||
# - uses: 'actions/checkout@v4'
|
||||
# - uses: 'actions/setup-go@v5'
|
||||
# with:
|
||||
# go-version-file: 'go.mod'
|
||||
# - run: |
|
||||
# make check tidy no-dirty
|
||||
build:
|
||||
#if: "${{ startsWith(github.ref, 'refs/tags/') }}"
|
||||
#needs:
|
||||
# - 'fmt'
|
||||
# - 'test'
|
||||
runs-on: 'self-hosted'
|
||||
steps:
|
||||
- uses: 'actions/checkout@v4'
|
||||
- uses: 'actions/setup-go@v5'
|
||||
with:
|
||||
go-version-file: 'go.mod'
|
||||
- run: |
|
||||
make tidy no-dirty
|
||||
test:
|
||||
runs-on: 'self-hosted'
|
||||
steps:
|
||||
- uses: 'actions/checkout@v4'
|
||||
- uses: 'actions/setup-go@v5'
|
||||
- name: 'build'
|
||||
run: |
|
||||
printf '%s' "$GIT_CRYPT_SECRET" | base64 -d > secret
|
||||
git-crypt unlock secret
|
||||
make build
|
||||
env:
|
||||
GIT_CRYPT_SECRET: '${{ secrets.GIT_CRYPT }}'
|
||||
- uses: 'actions/upload-artifact@v3'
|
||||
with:
|
||||
go-version-file: 'go.mod'
|
||||
- run: |
|
||||
make check tidy no-dirty
|
||||
if-no-files-found: 'error'
|
||||
name: 'ods'
|
||||
path: 'ods'
|
||||
# - uses: 'https://gitea.com/actions/release-action@main'
|
||||
# with:
|
||||
# files: |-
|
||||
# ods
|
||||
# api_key: '${{ secrets.RELEASE_TOKEN }}'
|
||||
# - uses: 'actions/forgejo-release@v2'
|
||||
# with:
|
||||
# url: 'https://git.adyxax.org/'
|
||||
# repo: 'adyxax/ods'
|
||||
# direction: 'upload'
|
||||
# tag: '${{ github.ref_name }}'
|
||||
# sha: '${{ github.sha }}'
|
||||
# release-dir: 'release'
|
||||
# token: '${{ secrets.TOKEN }}'
|
||||
# hide-archive-link: true
|
||||
# release-notes-assistant: true
|
||||
|
|
Loading…
Add table
Reference in a new issue