Stardog: Update to Stardog 10.2.0 (#511) #158
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Charts | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: '0' | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Prepare charts | |
run: make prepare | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
with: | |
charts_dir: appuio | |
charts_repo_url: https://charts.appuio.ch | |
env: | |
CR_TOKEN: "${{ secrets.RELEASE_PAT }}" |