@@ -23,6 +23,22 @@ jobs:
|
||||
check-latest: 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
|
||||
uses: goreleaser/goreleaser-action@v6
|
||||
with:
|
||||
|
||||
Reference in New Issue
Block a user