Skip to content

use deploy key (#32) #8

use deploy key (#32)

use deploy key (#32) #8

name: Update Manifest
on:
push:
branches:
- main
jobs:
update-manifest:
runs-on: ubuntu-latest
steps:
- name: echo actor
run: echo "actor is ${{ github.actor }}"
- uses: actions/checkout@v4
with:
path: ./
ssh-key: ${{ secrets.GH_SSH_KEY}}
persist-credentials: true
- name: update current plugin list
run: |
plugins=$(ls pkg/plugins | tr -s ' ' | sort)
echo "got plugins: $plugins"
echo '
# this manifest contains the name of every currently implemented plugin. it can be pulled via https:/opencost/opencost-plugins/raw/main/manifest to get an up to date list of current plugins.
' > manifest
echo "$plugins" >> manifest
echo "manifest updated"
echo "manifest contents:"
cat manifest
# - uses: EndBug/add-and-commit@v9
# name: commit updated manifest file
# with:
# add: 'manifest'
# commit: --signoff
# message: 'update manifest'
# author_name: 'cliffcolvin'
# github_token:
- name: Commit changes
run: |
git config --local user.email "github-actions[bot]@noreply.example.com"
git config --local user.name "github-actions[bot]"
git add manifest
git commit -m "update manifest"
- name: Push chart to repo
uses: ad-m/github-push-action@master
with:
ssh: true
directory: .
repository: opencost/opencost-plugins
branch: main