Skip to content

Commit 42e00ed

Browse files
authored
fix: Adjust workflow permissions so it can bump version (#85)
1 parent f1b14b9 commit 42e00ed

2 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,32 @@ on:
33
push:
44
branches:
55
- master
6+
7+
permissions:
8+
contents: read
9+
610
jobs:
711
release:
812
runs-on: ubuntu-latest
13+
14+
permissions:
15+
contents: write
16+
id-token: write
17+
issues: write
18+
pull-requests: write
19+
920
steps:
1021
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
1122
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
1223
with:
1324
node-version: 20
1425
- uses: ruby/setup-ruby@250fcd6a742febb1123a77a841497ccaa8b9e939
1526
with:
16-
ruby-version: '3.2' # Not needed with a .ruby-version file
27+
ruby-version: "3.2" # Not needed with a .ruby-version file
1728

1829
- name: Install dependencies
1930
run: npm install && bundle install
2031

21-
- name: Build and validate gem
22-
run: gem build
23-
2432
- name: Semantic Release
2533
uses: cycjimmy/semantic-release-action@61680d0e9b02ff86f5648ade99e01be17f0260a4
2634
env:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module PhraseappInContextEditor
2-
VERSION = "3.0.0"
2+
VERSION = "3.1.0"
33
end

0 commit comments

Comments
 (0)