clean up project for use with npm install
Release / release (push) Successful in 2m6s

This commit is contained in:
2025-12-15 19:48:56 -08:00
parent b6a681338a
commit 4fe053c324
50 changed files with 391 additions and 15409 deletions
+17 -34
View File
@@ -1,42 +1,25 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
name: Release
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
tags:
- "*"
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
contents: write
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
- uses: actions/checkout@v5
with:
# Upload entire repository
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
fetch-depth: 0
- run: npm pack
- run: mv js-util*.tgz js-util.tgz
- run: git log $(git describe --tags --abbrev=0 HEAD~1)..HEAD --oneline > changelog.txt
- uses: softprops/action-gh-release@v2
with:
make_latest: true
body_path: changelog.txt
files: js-util.tgz