We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88961e6 commit 826ac26Copy full SHA for 826ac26
.github/workflows/core_release.yml
@@ -16,13 +16,15 @@ permissions:
16
17
jobs:
18
release:
19
+ if: github.repository == 'opf/helm-charts'
20
name: Update the Helm chart for a core release
21
runs-on: ubuntu-latest
22
steps:
23
- name: Checkout Repo
24
uses: actions/checkout@v3
25
with:
26
fetch-depth: 0
27
+ token: ${{ secrets.OPENRPOJECTCI_GH_TOKEN }}
28
29
- name: Setup Ruby
30
uses: ruby/setup-ruby@v1
@@ -42,4 +44,6 @@ jobs:
42
44
git add .changeset/*.md
43
45
git add charts/openproject/Chart.yaml
46
git commit -m "Update helm chart for core release ${{ inputs.tag }}"
- git push
47
+ git push origin main
48
+ env:
49
+ GITHUB_TOKEN: ${{ secrets.OPENRPOJECTCI_GH_TOKEN }}
0 commit comments