diff --git a/.gitea/workflows/build-publish.yml b/.gitea/workflows/build-publish.yml index 28837c2..297bb9b 100644 --- a/.gitea/workflows/build-publish.yml +++ b/.gitea/workflows/build-publish.yml @@ -7,13 +7,15 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Install makepkg - uses: edlanglois/pkgbuild-action@v1 id: makepkg + uses: edlanglois/pkgbuild-action@v1 - name: Print Package Files run: | echo "Successfully created the following package archive" echo "Package: ${{ steps.makepkg.outputs.pkgfile0 }}" - name: Upload Package Archive - uses: actions/upload-artifact@v2 + id: use-go-action + uses: https://gitea.com/actions/release-action@main with: - path: ${{ steps.makepkg.outputs.pkgfile0 }} + files: ${{ steps.makepkg.outputs.pkgfile0 }} + api_key: ${{ secrets.APITOKEN_RELEASE }}