@@ -23,6 +23,22 @@ jobs:
|
|||||||
check-latest: false
|
check-latest: false
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
|
- name: Debug secrets
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
GITEA_SECRET: ${{ secrets.PACKAGE_TOKEN }}
|
||||||
|
run: |
|
||||||
|
if [ -z "$GITEA_TOKEN" ]; then
|
||||||
|
echo "GITEA_TOKEN is EMPTY"
|
||||||
|
else
|
||||||
|
echo "GITEA_TOKEN is set (length ${#GITEA_TOKEN})"
|
||||||
|
fi
|
||||||
|
if [ -z "$GITEA_SECRET" ]; then
|
||||||
|
echo "GITEA_SECRET (PACKAGE_TOKEN) is EMPTY"
|
||||||
|
else
|
||||||
|
echo "GITEA_SECRET (PACKAGE_TOKEN) is set (length ${#GITEA_SECRET})"
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Run GoReleaser
|
- name: Run GoReleaser
|
||||||
uses: goreleaser/goreleaser-action@v6
|
uses: goreleaser/goreleaser-action@v6
|
||||||
with:
|
with:
|
||||||
|
|||||||
Reference in New Issue
Block a user