Sha256: 10d5d6e123a1708b2cac29db6922624dbe0b6d58a9329e2318dc4941d945dce8

Contents?: true

Size: 912 Bytes

Versions: 8

Compression:

Stored size: 912 Bytes

Contents

name: Tag and release

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

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: '0'
      - name: Bump version and push tag
        uses: anothrNick/github-tag-action@1.17.2
        env:
          GITHUB_TOKEN: ${{ secrets.PUPPET_RELEASE_GH_TOKEN }}
          DEFAULT_BUMP: patch
          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

8 entries across 8 versions & 1 rubygems

Version Path
r10k-3.8.0 .github/workflows/release.yml
r10k-3.7.0 .github/workflows/release.yml
r10k-3.6.0 .github/workflows/release.yml
r10k-2.6.9 .github/workflows/release.yml
r10k-3.5.2 .github/workflows/release.yml
r10k-3.5.1 .github/workflows/release.yml
r10k-3.5.0 .github/workflows/release.yml
r10k-3.4.1 .github/workflows/release.yml