Skip to content

Commit

Permalink
chore: add release-please action
Browse files Browse the repository at this point in the history
  • Loading branch information
voidrot committed Oct 19, 2023
1 parent 12d1589 commit a2fac3c
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
root = true

[*]
indent_size = 2
indent_style = space
trim_trailing_whitespace = true
insert_final_newline = true
29 changes: 29 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

name: release-please

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- name: get token
id: create_token
uses: getsentry/action-github-app-token@v2
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}

- uses: google-github-actions/release-please-action@v3
with:
release-type: simple
package-name: backstage
extra-files: |
README.md
token: ${{ steps.create_token.outputs.token }}
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodejs 20.7.0
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# [Backstage](https://backstage.io)

Version: 0.0.0 <!-- x-release-please-version -->

This is your newly scaffolded Backstage App, Good Luck!

To start the app, run:
Expand Down

0 comments on commit a2fac3c

Please sign in to comment.