Skip to content

Latest Release

Latest Release #2

Workflow file for this run

name: Grid CSS Package
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm test
publish-css-grid:
needs: build
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 18
registry-url: https://npm.pkg.github.com/
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run production
- name: Publish module
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.PACKAGE_TOKEN_KEY }}