Skip to content

CD

CD #93

Workflow file for this run

name: CD
on:
workflow_dispatch:
permissions: read-all
jobs:
deploy_dev:
name: Preparing Alpha release
if: ${{ github.repository == 'sws2apps/jw-epub-parser' && github.ref == 'refs/heads/alpha' }}
environment:
name: Development
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout for release preparation
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
ref: alpha
persist-credentials: false
- name: Use Node.js LTS version
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65
with:
node-version: lts/Iron
- name: Install package dependencies
run: npm ci
- name: Semantic Release
id: semantic
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
deploy_stg:
name: Preparing Beta release
if: ${{ github.repository == 'sws2apps/jw-epub-parser' && github.ref == 'refs/heads/beta' }}
environment:
name: Staging
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout for release preparation
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
ref: beta
persist-credentials: false
- name: Use Node.js LTS version
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65
with:
node-version: lts/Iron
- name: Install package dependencies
run: npm ci
- name: Semantic Release
id: semantic
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
deploy_prod:
name: Preparing Production release
if: ${{ github.repository == 'sws2apps/jw-epub-parser' && github.ref == 'refs/heads/main' }}
environment:
name: Production
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout for release preparation
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
ref: main
persist-credentials: false
- name: Use Node.js LTS version
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65
with:
node-version: lts/Iron
- name: Install package dependencies
run: npm ci
- name: Semantic Release
id: semantic
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release