Merge pull request #17 from enolfc/eosc-accounting #5
Workflow file for this run
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 | |
tags: | |
- "**" | |
jobs: | |
publish: | |
if: github.event_name != 'pull_request' | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure Git | |
run: | | |
git config --global user.name "$GITHUB_ACTOR" | |
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
git config --get user.name | |
git config --get user.email | |
- name: Install Helm | |
run: | | |
curl -ssL https://get.helm.sh/helm-v3.10.2-linux-amd64.tar.gz | tar -xz -C . --strip-components 1 linux-amd64/helm | |
sudo install -m 0755 -o root -g root helm /usr/local/bin/ | |
- name: Install Python depedencies | |
run: | | |
sudo apt-get install --no-install-recommends -y python3 python3-pip | |
sudo pip install -r dev-requirements.txt | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Run chartpress | |
run: | | |
REMOTE_ORIGIN="https://x-access-token:${{ github.token }}@$(git remote get-url origin | sed 's,^[^/]*//,,')" | |
sed -i chartpress.yaml -e "s,git:.*,git: $REMOTE_ORIGIN," | |
chartpress --push --publish-chart |