diff --git a/.forgejo/workflows/generate-release-zipfile.yml b/.forgejo/workflows/generate-release-zipfile.yml index cebcdf9..8aca51f 100644 --- a/.forgejo/workflows/generate-release-zipfile.yml +++ b/.forgejo/workflows/generate-release-zipfile.yml @@ -1,5 +1,6 @@ on: push: + branches: jobs: GenerateReleaseZipfile: diff --git a/.github/workflows/generate-release-zipfile.yml b/.github/workflows/generate-release-zipfile.yml index 698a6c2..dea9fa2 100644 --- a/.github/workflows/generate-release-zipfile.yml +++ b/.github/workflows/generate-release-zipfile.yml @@ -1,5 +1,6 @@ on: push: + branches: jobs: GenerateReleaseZipfile: diff --git a/README.md b/README.md index 4c7ede0..f056d6f 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,8 @@ steps: - name: Simple checkout run: | git init + # On Github, the token isn't readily available. + test -z "$GITHUB_TOKEN" && GITHUB_TOKEN="${{ github.token }}" MY_AUTHENTICATED_URL="$( echo "$GITHUB_SERVER_URL" | sed "s#^\(https\?://\)#\1$GITHUB_TOKEN\@#" )" git remote add origin "$MY_AUTHENTICATED_URL"/"$GITHUB_REPOSITORY" # Little and optional speed optimization diff --git a/action.yml b/action.yml index 8346a3c..5814368 100644 --- a/action.yml +++ b/action.yml @@ -8,6 +8,10 @@ description: | This is a lighter version of upload-artifact, it only needs a shell, zip and the full version of wget. +branding: + icon: archive + color: gray-dark + inputs: name: description: 'Artifact name'