Skip to content

Commit bb5b97c

Browse files
authored
ci: add release workflow (#4)
1 parent 332fbab commit bb5b97c

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
- main
77

88
jobs:
9-
build:
10-
name: Build
9+
bicep-build:
10+
name: Bicep Build
1111
runs-on: ubuntu-latest
1212
env:
1313
BICEP_FILE_PATH: main.bicep

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
release-please:
10+
name: Release Please
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write # Required to update changelog file
14+
pull-requests: write # Required to create release PRs
15+
steps:
16+
- uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f
17+
with:
18+
release-type: simple

0 commit comments

Comments
 (0)