You've already forked ubuntu-act_gitea
25 lines
495 B
YAML
25 lines
495 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- "**"
|
|
tags:
|
|
- "!**"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Create release if required
|
|
run: |
|
|
/usr/local/bin/semantic-release --version-file \
|
|
--changelog .generated-go-semantic-release-changelog.md \
|
|
--hooks exec \
|
|
--provider=gitea
|
|
env:
|
|
GITEA_TOKEN: ${{ secrets.G_TOKEN }}
|
|
GITEA_HOST: ${{ secrets.G_SERVER_URL}}
|
|
|
|
|