Skip to content

Commit

Permalink
Merge pull request #14 from bcgov/feature/descw-2005-github-workflows
Browse files Browse the repository at this point in the history
Removed repository setting, using default
  • Loading branch information
ShawnTurple authored Feb 29, 2024
2 parents 8451c54 + fed2d77 commit e9cb8fd
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/buildTestPublishContainerDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ env:
notifyBCContainerTag: latest
jobs:
build-and-test:
if: false
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/chartReleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release Charts

on:
push:
branches:
- v4
paths:
- helm/Chart.yaml
workflow_dispatch:

jobs:
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:
- uses: actions/checkout@v2
- name: Publish Helm charts
uses: stefanprodan/helm-gh-pages@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
charts_dir: ./
branch: gh-pages
target_dir: docs/helm
2 changes: 1 addition & 1 deletion .github/workflows/ghPages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish to GH Pages
on:
push:
branches:
- main
- v4
release:
types:
- published
Expand Down

0 comments on commit e9cb8fd

Please sign in to comment.