0
1
Fork 0
An action written by Golang to support publishing release to Gitea (not Github Actions compatible)
Go to file
Lunny Xiao 21a5938ff2 Merge pull request 'Fix blank line will upload all files' (#12) from lunny/ignore_blank_file_line into main
Reviewed-on: https://gitea.com/actions/release-action/pulls/12
2023-11-16 07:19:50 +00:00
.gitea/workflows update README and add actions 2023-05-14 23:17:39 +08:00
vendor Save vendor to reduce network requests 2023-11-16 14:50:15 +08: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 Add release body 2023-07-07 10:36:39 +08:00
go.mod init project 2023-04-16 15:02:22 +08:00
go.sum init project 2023-04-16 15:02:22 +08:00
main.go Fix blank line will upload all files 2023-08-10 23:48:52 +08: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: