Remove unnecessary --yes flag from kubelogin command in cluster_login… #102
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: Publish function package (dev) | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-20.04 | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: "Get Previous tag" | |
| id: previoustag | |
| uses: "WyriHaximus/github-action-get-previous-tag@v1.2.2" | |
| with: | |
| fallback: 2022.2.0 | |
| - name: "Get next minor version" | |
| id: semvers | |
| uses: "WyriHaximus/github-action-next-semvers@v1" | |
| with: | |
| version: ${{ steps.previoustag.outputs.tag }} | |
| - name: "Publish package" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: ./scripts/cipublish-func -t "${{ steps.semvers.outputs.minor }}-dev" |