Skip to content

Commit 4379813

Browse files
committed
simplify release action
1 parent 23144a8 commit 4379813

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,8 @@ jobs:
1010
release:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/create-github-app-token@v2
14-
id: app-token
15-
with:
16-
app-id: ${{ secrets.WORKFLOWS_GITHUB_APP_ID }}
17-
private-key: ${{ secrets.WORKFLOWS_GITHUB_APP_PRIVATE_KEY }}
18-
1913
- name: Checkout code
2014
uses: actions/checkout@v4
21-
with:
22-
token: ${{ steps.app-token.outputs.token }}
2315

2416
- name: Set up Deno
2517
uses: denoland/setup-deno@v2
@@ -46,16 +38,3 @@ jobs:
4638
tag_name: v${{ steps.get_version.outputs.release_version }}
4739
files: |
4840
dist/*
49-
50-
- name: Configure git
51-
run: |
52-
git config --global user.name "github-action"
53-
git config --global user.email "github-action@nanoapi.io"
54-
55-
- name: Commit changes
56-
run: |
57-
git commit deno.json -m "[skip ci] update version ${{ steps.get_version.outputs.release_version }}"
58-
59-
- name: Push changes
60-
run: |
61-
git push

0 commit comments

Comments
 (0)