Package Tarballs #12
Workflow file for this run
This file contains hidden or 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: Package Tarballs | |
| on: | |
| # Run this workflow on branch main pushes and tag pushes that match v* (eg. `v1.2.3`) | |
| push: | |
| branch: | |
| - 'main' | |
| tags: | |
| - 'v*' | |
| jobs: | |
| package: | |
| name: Package Tarballs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - name: Install Helm | |
| uses: azure/setup-helm@v1 | |
| with: | |
| version: v2.16.6 | |
| - name: Package tarballs | |
| run: mkdir -p package; helm package --save=false --destination ./package ./conjur-oss | |
| - name: Add package to artifacts | |
| uses: actions/upload-artifact@v1 | |
| with: | |
| path: ./package | |
| name: package |