An action written by Golang to support publishing release to Gitea(not Github Actions compatible)
This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Evan 748ba9953d
Test binaries / test release-action (push) Successful in 33s Details
Run using node20
2024-05-11 22:22:27 -04:00
.gitea/workflows Include full test suite 2024-01-18 09:45:03 -05:00
.gitignore init project 2023-04-16 15:02:22 +08:00
LICENSE init project 2023-04-16 15:02:22 +08:00
README.md update readme 2023-05-16 09:58:23 +08:00
action.yml Run using node20 2024-05-11 22:22:27 -04:00
go.mod chore(deps): update dependency go to v1.22.3 2024-05-07 22:01:06 +00:00
go.sum fix(deps): update module code.gitea.io/sdk/gitea to v0.18.0 2024-04-17 10:01:13 +00:00
invoke-binary.js Add JS shim 2023-10-16 22:03:22 -04:00
linux-amd64 Recompiled binaries 2023-10-17 02:00:00 +00:00
linux-arm64 Recompiled binaries 2023-10-17 02:00:00 +00:00
main.go Filter 'refs/tags/' from body and title 2023-10-16 21:14:07 -04:00
renovate.json Add Renovate Bot support 2023-12-01 13:10:05 -05:00
windows-amd64.exe Recompiled binaries 2023-10-17 02:00:00 +00:00
windows-arm64.exe Recompiled binaries 2023-10-17 02:00:00 +00:00

README.md

Release Action

This action will help Gitea users to publish release and attachments.

Example

name: release

on: 
  push:
    tags:
      - '*'

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0
      - name: setup go
        uses: https://github.com/actions/setup-go@v4
        with:
          go-version: '>=1.20.1'
      - name: go build
        run: go build -o bin/myapp
      - name: Use Go Action  
        id: use-go-action
        uses: https://gitea.com/actions/release-action@main
        with:
          files: |-
            bin/**            
          api_key: '${{secrets.RELEASE_TOKEN}}'

You can find real examples here: