Skip to content

Commit

Permalink
remove name values to reduce verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
sstarcher committed Apr 5, 2020
1 parent c7df6d6 commit dec8b02
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,24 @@ jobs:
chart:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- uses: actions/checkout@v2

- run: git fetch --prune --unshallow

- name: Set up Go 1.13
uses: actions/setup-go@v2-beta
- uses: actions/setup-go@v2-beta
with:
go-version: 1.13
id: go

- name: Checkout private tools
uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: sstarcher/helm-charts
token: ${{ secrets.ACCESS_TOKEN }}
path: helm-charts

- name: Update Chart Version
run: ./helm-charts/add.sh
env:
HELM_RELEASE: release-tags
- run: ./helm-charts/add.sh

- name: Push changes
uses: ad-m/github-push-action@master
- uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.ACCESS_TOKEN }}
directory: helm-charts
Expand Down

0 comments on commit dec8b02

Please sign in to comment.