3 Commits

Author SHA1 Message Date
7858f1c55b Исправлен workflow - 8 для сборки и релиза
Some checks failed
Release Build / release (push) Failing after 1m46s
2025-07-27 13:41:09 +06:00
07a49d6cd4 Исправлен workflow - 7 для сборки и релиза
Some checks failed
Release Build / release (push) Failing after 50s
2025-07-27 13:33:06 +06:00
c8e8b45099 Исправлен workflow - 6 для сборки и релиза
Some checks failed
Release Build / release (push) Failing after 7s
2025-07-27 13:29:09 +06:00

View File

@@ -7,13 +7,19 @@ on:
jobs: jobs:
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container:
image: golang:1.21
steps: steps:
- uses: actions/checkout@v3 - name: Checkout repository
with: run: |
repository: 'GiteaAdmin/hello_gitea' git clone https://oauth2:${{ secrets.GITEATOKEN }}@direct-dev.ru/gitea/GiteaAdmin/hello_gitea.git hello_gitea
path: 'hello_gitea' cd hello_gitea
token: ${{ secrets.GITEATOKEN }} git checkout ${{ github.ref }}
ref: ${{ github.ref }}
- name: Setup Go
run: |
git --version
go version
- name: Build - name: Build
run: | run: |