Skip to content

Commit

Permalink
Merge branch 'master' of github.com:DandyDeveloper/charts into redis-…
Browse files Browse the repository at this point in the history
…ha/haproxy/change-default-haproxy-image-tag-to-alpine
  • Loading branch information
DandyDeveloper committed Feb 5, 2024
2 parents 92a81fa + 6ffc29a commit 570a446
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,27 @@ on:
push:
branches: [ master ]
jobs:
build:
release:
# depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions
# see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Package and Publish charts
uses: J12934/helm-gh-pages-action@master
with:
deploy-branch: gh-pages
access-token: "${{ secrets.CR_TOKEN }}"
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v3

- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.CR_TOKEN }}"

0 comments on commit 570a446

Please sign in to comment.