Skip to content

Commit

Permalink
ci: add release workflow (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
hknutsen authored Dec 5, 2024
1 parent 332fbab commit bb5b97c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- main

jobs:
build:
name: Build
bicep-build:
name: Bicep Build
runs-on: ubuntu-latest
env:
BICEP_FILE_PATH: main.bicep
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Release

on:
push:
branches:
- main

jobs:
release-please:
name: Release Please
runs-on: ubuntu-latest
permissions:
contents: write # Required to update changelog file
pull-requests: write # Required to create release PRs
steps:
- uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f
with:
release-type: simple

0 comments on commit bb5b97c

Please sign in to comment.