Sha256: 5860ea3f1d58be3f5618f7a8143ad31a35e23615635e9912f97953863741bf5e

Contents?: true

Size: 940 Bytes

Versions: 6

Compression:

Stored size: 940 Bytes

Contents

name: Tag and release

on:
  push:
    branches:
      - main
    paths:
      - 'lib/r10k/version.rb'

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: '0'
      - name: Bump version and push tag
        uses: anothrNick/github-tag-action@1.67.0
        env:
          GITHUB_TOKEN: ${{ secrets.PUPPET_RELEASE_GH_TOKEN }}
          DEFAULT_BUMP: patch
          TAG_CONTEXT: branch
          WITH_V: false
          # Uncomment this if the tag and version file become out-of-sync and
          # you need to tag at a specific version.
          # CUSTOM_TAG:
      - name: Build gem
        uses: scarhand/actions-ruby@master
        with:
          args: build *.gemspec
      - name: Publish gem
        uses: scarhand/actions-ruby@master
        env:
          RUBYGEMS_AUTH_TOKEN: ${{ secrets.RUBYGEMS_AUTH_TOKEN }}
        with:
          args: push *.gem

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
r10k-4.1.0 .github/workflows/release.yml
r10k-4.0.2 .github/workflows/release.yml
r10k-4.0.1 .github/workflows/release.yml
r10k-4.0.0 .github/workflows/release.yml
r10k-4.0.0.pre .github/workflows/release.yml
r10k-3.16.0 .github/workflows/release.yml