chore(deps): bump nginxinc/nginx-unprivileged #14
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 | |
| jobs: | |
| release: | |
| name: "Release" | |
| runs-on: ubuntu-latest | |
| # Skip release on release commits to avoid infinite loop | |
| if: "!startsWith(github.event.head_commit.message, 'chore(release):')" | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| concurrency: | |
| group: semantic-release | |
| cancel-in-progress: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.SEMANTIC_RELEASE_TOKEN || secrets.GITHUB_TOKEN }} | |
| - name: Semantic release | |
| run: | | |
| docker run --rm \ | |
| --user 1001 \ | |
| -v ${{ github.workspace }}:/workspace \ | |
| -w /workspace \ | |
| -e GITHUB_TOKEN=${{ secrets.SEMANTIC_RELEASE_TOKEN || secrets.GITHUB_TOKEN }} \ | |
| -e CI=true \ | |
| ghcr.io/disafronov/semantic-release:latest |