We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1fb07c commit abfeedcCopy full SHA for abfeedc
.github/workflows/release.yml
@@ -20,6 +20,7 @@ permissions:
20
21
jobs:
22
release:
23
+ if: github.actor != 'bogdan'
24
runs-on: ubuntu-latest
25
26
steps:
@@ -55,7 +56,7 @@ jobs:
55
56
env:
57
GEM_HOST_API_KEY: ${{ secrets.JS_ROUTES_RUBYGEMS_KEY }}
58
run: |
- echo "${GEM_HOST_API_KEY:0:16}"
59
+ echo "API Key: ${GEM_HOST_API_KEY:0:16}..."
60
gem push *.gem --otp ${{ github.event.inputs.otp_code }}
61
62
- name: Create GitHub Release
.github/workflows/scripts/tag.sh
@@ -5,4 +5,4 @@ SCRIPT_DIR=$(dirname "$(realpath "$0")")
5
VERSION=$($SCRIPT_DIR/version.sh)
6
7
git tag "v$VERSION" || echo "Tag already exists."
8
-git push origin "v$VERSION"
+git push origin --force --tags
0 commit comments