Merge pull request #318 from OpenGeoscience/sentry-frontend #204
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: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: write | |
| jobs: | |
| version-and-release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install npm | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.14.0 | |
| - name: Run Semantic Release | |
| run: | | |
| uvx python-semantic-release version | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |