chore: update agent to v2.11.0 (#407) #379
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: Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| packages: write | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: namespace-profile-linux-amd64-4vcpu | |
| steps: | |
| - name: Checkout | |
| uses: namespacelabs/nscloud-checkout-action@v9 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Nix | |
| uses: ./.github/actions/default | |
| with: | |
| token: ${{ secrets.NUMARY_GITHUB_TOKEN }} | |
| - name: Configure Git | |
| run: | | |
| git config user.name "$GITHUB_ACTOR" | |
| git config user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
| - name: Release | |
| run: nix develop --impure --command just release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.NUMARY_GITHUB_TOKEN }} |