Исправлен workflow - 4 для сборки и релиза
Some checks failed
Release Build / release (push) Failing after 47s
Some checks failed
Release Build / release (push) Failing after 47s
This commit is contained in:
@@ -6,23 +6,30 @@ on:
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest # Убраны квадратные скобки (для Gitea это важно)
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: 'GiteaAdmin/hello_gitea'
|
||||
path: 'hello_gitea'
|
||||
token: ${{ secrets.GITEATOKEN }}
|
||||
git-server-url: 'https://direct-dev.ru/gitea'
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cd hello_gitea
|
||||
mkdir -p bin
|
||||
go build -o bin/hello-api-${{ github.ref_name }} main.go
|
||||
ls -la bin/ # Добавлено для отладки
|
||||
ls -la bin/
|
||||
|
||||
- name: Create Release
|
||||
uses: softprops/action-gh-release@v1 # Используем специальный Action для Gitea
|
||||
uses: softprops/action-gh-release@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITEATOKEN }} # Только один токен!
|
||||
GITHUB_TOKEN: ${{ secrets.GITEATOKEN }}
|
||||
GITHUB_API_URL: 'https://direct-dev.ru/gitea/api/v1'
|
||||
with:
|
||||
tag_name: ${{ github.ref_name }}
|
||||
name: "Release ${{ github.ref_name }}"
|
||||
body: "Automated release"
|
||||
files: |
|
||||
bin/hello-api-${{ github.ref_name }}
|
||||
hello_gitea/bin/hello-api-${{ github.ref_name }}
|
Reference in New Issue
Block a user