fix(browse): refresh correct column after async document copy (#54) #25
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: | |
| attestations: write | |
| artifact-metadata: write | |
| contents: write | |
| id-token: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: Install cosign | |
| uses: sigstore/cosign-installer@v4.1.2 | |
| - name: Install Syft | |
| id: syft | |
| uses: anchore/sbom-action/download-syft@v0 | |
| - name: Add Syft to PATH | |
| run: echo "$(dirname '${{ steps.syft.outputs.cmd }}')" >> "$GITHUB_PATH" | |
| - name: Generate Homebrew tap token | |
| id: tap-token | |
| uses: actions/create-github-app-token@v3 | |
| with: | |
| app-id: ${{ vars.HOMEBREW_TAP_APP_ID }} | |
| private-key: ${{ secrets.HOMEBREW_TAP_APP_PRIVATE_KEY }} | |
| owner: gugahoi | |
| repositories: homebrew-tap | |
| - name: Release | |
| uses: goreleaser/goreleaser-action@v7 | |
| with: | |
| distribution: goreleaser | |
| version: '~> v2' | |
| args: release --clean --fail-fast | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| HOMEBREW_TAP_GITHUB_TOKEN: ${{ steps.tap-token.outputs.token }} | |
| - name: Attest release artifacts | |
| uses: actions/attest@v4 | |
| with: | |
| subject-checksums: dist/checksums.txt |