Skip to content

Commit a54fe78

Browse files
author
Bert McCutchen
committed
Removed ref limiter from publish workflow
1 parent d5fda80 commit a54fe78

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/gem-push.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,21 @@ on:
77

88
jobs:
99
build:
10-
if: ${{ github.ref == 'refs/heads/main' }}
10+
# if: ${{ github.ref == 'refs/heads/main' }}
1111
name: Build + Publish
1212
runs-on: ubuntu-latest
1313
permissions:
1414
contents: read
1515
packages: write
1616

1717
steps:
18+
- name: Echo GitHub Event Ref
19+
run: echo "${{ github.event.base_ref }}"
1820
- uses: actions/checkout@v4
1921
- name: Set up Ruby
2022
uses: ruby/setup-ruby@v1
2123
with:
2224
ruby-version: 3.3.6
23-
2425
- name: Publish to GPR
2526
run: |
2627
mkdir -p $HOME/.gem

0 commit comments

Comments
 (0)