fix(cors): missing allowed headers (#1184) #108
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: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*.*.*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| GoReleaser: | |
| runs-on: "shipfox-4vcpu-ubuntu-2404" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| filter: tree:0 # treeless clone, faster to clone as history and blobs are only fetched when needed. | |
| - name: Setup Env | |
| uses: ./.github/actions/default | |
| with: | |
| token: ${{ secrets.NUMARY_GITHUB_TOKEN }} | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: "NumaryBot" | |
| password: ${{ secrets.NUMARY_GITHUB_TOKEN }} | |
| - run: > | |
| nix develop --impure --command just release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.NUMARY_GITHUB_TOKEN }} | |
| SPEAKEASY_API_KEY: ${{ secrets.SPEAKEASY_API_KEY }} | |
| FURY_TOKEN: ${{ secrets.FURY_TOKEN }} | |
| GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} |