25
25
- uses : actions/create-github-app-token@v1
26
26
id : app-token
27
27
with :
28
- # required
29
28
app-id : ${{ vars.RELEASE_CONTROLLER_APP_ID }}
30
29
private-key : ${{ secrets.RELEASE_CONTROLLER_APP_PRIVATE_KEY }}
31
30
owner : ${{ github.repository_owner }}
92
91
repository : github/backup-utils
93
92
ref : master
94
93
- name : Create empty commit
95
- # if github.event.inputs.backup-utils-release-commit is empty string, then create an empty commit
96
94
if : github.event.inputs.backup-utils-release-commit == ''
97
95
uses : stefanzweifel/git-auto-commit-action@v4
98
96
id : empty-commit
@@ -114,11 +112,11 @@ jobs:
114
112
echo "Using provided commit sha for release commit"
115
113
echo "release-commit=\"${{ github.event.inputs.backup-utils-release-commit }}\"" >> "$GITHUB_OUTPUT"
116
114
fi
117
- - name : Checkout backup-utils-private
118
- uses : actions/checkout@v4
119
- with :
120
- token : ${{ steps.app-token.outputs.token }}
121
- repository : github/backup-utils-private
115
+ # - name: Checkout backup-utils-private
116
+ # uses: actions/checkout@v4
117
+ # with:
118
+ # token: ${{ steps.app-token.outputs.token }}
119
+ # repository: github/backup-utils-private
122
120
- name : Download deb artifact
123
121
uses : actions/download-artifact@v3
124
122
with :
@@ -138,7 +136,6 @@ jobs:
138
136
github-backup-utils-v${{ github.event.inputs.version }}.tar.gz, \
139
137
github-backup-utils_${{ github.event.inputs.version }}_all.deb
140
138
tag : v${{ github.event.inputs.version }}
141
- # use release-commit value
142
139
commit : ${{ steps.resolve-release-commit.outputs.release-commit }}
143
140
bodyFile : release-notes/${{ github.event.inputs.version }}.md
144
141
draft : ${{ github.event.inputs.draft }}
0 commit comments