chore: bump @semantic-release/exec from 6.0.3 to 7.1.0 #54
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: Dockerfile build test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| NODE_VERSION: "22" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| # Build using your Makefile target (runs: docker build -t hello-universe-db .) | |
| - name: Build Docker image | |
| run: make build | |
| # Quick sanity check that the image exists | |
| - name: Verify image was built | |
| run: docker image inspect hello-universe-db:latest > /dev/null | |
| semantic: | |
| name: "Semantic Release Dry Run" | |
| needs: [build] | |
| runs-on: ubuntu-latest | |
| if: ${{ !github.event.pull_request.draft }} | |
| steps: | |
| - name: Setup nodeJs | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Semantic Release Dry Run | |
| run: npx semantic-release --dry-run |