Skip to content

Commit 8c0eedf

Browse files
committed
Release 0.9.1
1 parent bd49d87 commit 8c0eedf

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
- name: Install Ruby
2020
uses: ruby/setup-ruby@v1
2121
with:
22-
bundler-cache: true
2322
ruby-version: 'ruby'
2423
- name: Build gem
2524
shell: bash
@@ -53,13 +52,8 @@ jobs:
5352
uses: actions/download-artifact@v4
5453
with:
5554
name: gem-artifact
56-
- name: Setup GitHub packages access
57-
run: |
58-
mkdir -p ~/.gem
59-
echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
60-
chmod 0600 ~/.gem/credentials
6155
- name: Publish gem to GitHub packages
62-
run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem
56+
run: GEM_HOST_API_KEY=${{ secrets.GITHUB_TOKEN }} gem push --key github --host https://rubygems.pkg.github.com/${{ github.repository_owner }} *.gem
6357

6458
release-to-rubygems:
6559
needs: build-release

voxpupuli-gem-workflow-test.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require 'date'
22

33
Gem::Specification.new do |s|
44
s.name = 'voxpupuli-gem-workflow-test'
5-
s.version = '0.9.0'
5+
s.version = '0.9.1'
66
s.summary = 'DO NOT USE - only for testing release workflows'
77
s.description = 'Within Voxpupuli there are a lot of repositories maintained by various people. That requires automation, but automation requires testing.'
88
s.authors = ['Voxpupuli']

0 commit comments

Comments
 (0)