Skip to content

Merge pull request #1306 from ideal-postcodes/terminated_postcodes #462

Merge pull request #1306 from ideal-postcodes/terminated_postcodes

Merge pull request #1306 from ideal-postcodes/terminated_postcodes #462

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 24
- name: Cache node modules
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
- name: Install
run: npm install
- name: Semantic Release
run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}