A minimal, classless CSS framework that conveys structure through typography and spacing alone. fogtype.tngl.io/css/
0

Configure Feed

Select the types of activity you want to include in your feed.

create release workflow

Kohei Watanabe (Jun 16, 2026, 1:30 AM +0900) 27d2672c a1ec8bf2

+20
+20
.github/workflows/release.yml
··· 1 + name: release 2 + on: 3 + push: 4 + tags: 5 + - "v*" 6 + jobs: 7 + release: 8 + runs-on: ubuntu-latest 9 + permissions: 10 + id-token: write 11 + steps: 12 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 13 + - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 14 + with: 15 + node-version: "lts/*" 16 + registry-url: https://registry.npmjs.org/ 17 + - name: Release 18 + run: npm publish 19 + env: 20 + GH_TOKEN: "${{ github.token }}"