From 5622e09558fff6f3a3e4bf91b6cccd50f301cc49 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sat, 22 Jul 2023 00:46:40 -0400 Subject: [PATCH] Update gitea actions for new default base url --- .gitea/workflows/build-and-release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build-and-release.yaml b/.gitea/workflows/build-and-release.yaml index 18353e088..3e3a7de24 100644 --- a/.gitea/workflows/build-and-release.yaml +++ b/.gitea/workflows/build-and-release.yaml @@ -11,7 +11,7 @@ jobs: container: ghcr.io/catthehacker/ubuntu:act-latest steps: - uses: actions/checkout@v3 - - uses: https://github.com/actions/setup-python@v4 + - uses: actions/setup-python@v4 with: python-version: '>=3.11' - name: Install tts_yaml_unpacker @@ -22,11 +22,11 @@ jobs: run: python -m zipfile -c "Arkham SCE Adam_${{ github.ref_name }}.zip" "Arkham SCE Adam_${{ github.ref_name }}.json" - name: setup go - uses: https://github.com/actions/setup-go@v4 + uses: actions/setup-go@v4 with: go-version: '>=1.20.1' - name: Create Release - uses: actions/release-action@main + uses: https://gitea.com/actions/release-action@main with: api_key: '${{secrets.RELEASE_TOKEN}}' files: "Arkham SCE Adam_${{ github.ref_name }}.zip"