install go before using the release action
Some checks failed
format / format (push) Successful in 16s
release / release (push) Failing after 26s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn
2025-05-12 21:03:10 +03:00
parent b854c19f85
commit 9e69f7416d

View File

@ -12,13 +12,18 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Build wheel package - name: Setup go
uses: actions/setup-go@v4
- name: Install dependencies
run: | run: |
sudo apt update -y sudo apt update -y
sudo apt install -y python3 python3-build python3-requests make sudo apt install -y python3 python3-build python3-requests make
make
- name: Create release - name: Build wheel package
run: make
- name: Create a release
uses: "https://gitea.com/actions/release-action@main" uses: "https://gitea.com/actions/release-action@main"
with: with:
files: |- files: |-