Skip to content

1.1.1

1.1.1 #44

Workflow file for this run

name: Node CI
# Push tests pushes; PR tests merges
on: [ push, pull_request ]
defaults:
run:
shell: bash
jobs:
# Deploy the build
deploy_staging:
name: Deploy staging
if: github.ref == 'refs/heads/main' && github.event_name == 'push' # Don't run twice for PRs (for now)
runs-on: ubuntu-latest
concurrency:
group: staging_${{ github.repository }}
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install
run: npm install
- name: Create blog post metadata
run: npm run metadata
- name: Create RSS feed
run: npm run rss
env:
SITE_URL: ${{ secrets.SITE_URL_STAGING }}
- name: Deploy to staging
uses: beginner-corp/actions/deploy@v1
with:
begin_token: ${{ secrets.BEGIN_TOKEN }}
begin_env_name: staging
channel: 'main'
# Deploy the build
deploy_production:
name: Deploy production
if: startsWith(github.ref, 'refs/tags/v') && github.event_name == 'push' # Don't run twice for PRs (for now)
runs-on: ubuntu-latest
concurrency:
group: production_${{ github.repository }}
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install
run: npm install
- name: Create blog post metadata
run: npm run metadata
- name: Create RSS feed
run: npm run rss
env:
SITE_URL: ${{ secrets.SITE_URL_PRODUCTION }}
- name: Deploy to production
uses: beginner-corp/actions/deploy@v1
with:
begin_token: ${{ secrets.BEGIN_TOKEN }}
begin_env_name: production
channel: 'main'