Sha256: 441171b0f1875a8efb5ce551e251d5c3997d19974f7657f7dbca6a9db5d93150
Contents?: true
Size: 1.92 KB
Versions: 1
Compression:
Stored size: 1.92 KB
Contents
name: Push & Release Gem Gem on: workflow_dispatch: inputs: bump_type: type: choice description: "Bump Type ( Choosing None will bump build number and keep the same version )" default: "patch" options: - patch - minor - major permissions: contents: read jobs: build: name: Build gem runs-on: ubuntu-latest permissions: id-token: write # IMPORTANT: this permission is mandatory for trusted publishing contents: write # IMPORTANT: this permission is required for `rake release` to push the release tag steps: # Set up - uses: actions/checkout@v4 - name: set git config env: GH_TOKEN: ${{ github.token }} run: | git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com" git config --global user.name "$(gh api /users/${GITHUB_ACTOR} | jq .name -r)" git config -l - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ruby - name: Install the gem-release run: gem install gem-release - name: Bump the gem run: gem bump ${{ github.events.inputs.bump_type }} - name: Push the new version run: git push release: name: Release gem runs-on: ubuntu-latest needs: build permissions: id-token: write # IMPORTANT: this permission is mandatory for trusted publishing contents: write # IMPORTANT: this permission is required for `rake release` to push the release tag steps: - uses: actions/checkout@v4 - name: Git Pull run: git pull - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ruby - name: Remove lock on bundle run: bundle config set frozen false - uses: rubygems/release-gem@v1
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cm-admin-1.5.20 | .github/workflows/push_gem.yml |