-
Notifications
You must be signed in to change notification settings - Fork 352
38 lines (35 loc) · 952 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Tag and release
on:
push:
branches:
- main
- 3.x
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/[email protected]
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