Compare commits

...

5 Commits

Author SHA1 Message Date
Bret Comnes
8f42b3ee86
1.1.21 2023-12-02 14:16:41 -08:00
Bret Comnes
bad0c3f219
Update node in actions and rebuild 2023-12-02 14:16:04 -08:00
Bret Comnes
2646c89cd5
Merge pull request #163 from bcomnes/dependabot/npm_and_yarn/siteup/cli-5.0.0
chore(deps-dev): bump @siteup/cli from 4.0.1 to 5.0.0
2023-11-05 20:29:18 -08:00
dependabot[bot]
0ae51ffae1
chore(deps-dev): bump @siteup/cli from 4.0.1 to 5.0.0
Bumps [@siteup/cli](https://github.com/bcomnes/siteup-cli) from 4.0.1 to 5.0.0.
- [Release notes](https://github.com/bcomnes/siteup-cli/releases)
- [Changelog](https://github.com/bcomnes/siteup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/bcomnes/siteup-cli/compare/v4.0.1...v5.0.0)

---
updated-dependencies:
- dependency-name: "@siteup/cli"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-11-06 03:55:23 +00:00
dependabot[bot]
c25e33f18b
chore(deps): bump actions/setup-node from 3 to 4 (#162)
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-24 03:28:03 +00:00
7 changed files with 1288 additions and 285 deletions

View File

@ -8,7 +8,7 @@ on:
env:
FORCE_COLOR: 1
node_version: 16
node_version: lts/*
concurrency: # prevent concurrent deploys doing strange things
group: deploy-to-neocities

View File

@ -8,7 +8,7 @@ on:
required: true
env:
node_version: 16
node_version: lts/*
FORCE_COLOR: 1
concurrency: # prevent concurrent releases
@ -23,7 +23,7 @@ jobs:
with:
# fetch full history so things like auto-changelog work properly
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
# setting a registry enables the NODE_AUTH_TOKEN env variable where we can set an npm token. REQUIRED

View File

@ -12,12 +12,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [lts/*]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm i

View File

@ -7,7 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
## [v1.1.20](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.19...v1.1.20)
## [v1.1.21](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.20...v1.1.21)
### Merged
- chore(deps-dev): bump @siteup/cli from 4.0.1 to 5.0.0 [`#163`](https://github.com/bcomnes/deploy-to-neocities/pull/163)
- chore(deps): bump actions/setup-node from 3 to 4 [`#162`](https://github.com/bcomnes/deploy-to-neocities/pull/162)
### Commits
- Update node in actions and rebuild [`bad0c3f`](https://github.com/bcomnes/deploy-to-neocities/commit/bad0c3f21924f957bd2d41156f9ae9894e8d01a1)
## [v1.1.20](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.19...v1.1.20) - 2023-10-22
### Merged

1534
dist/index.js vendored

File diff suppressed because it is too large Load Diff

8
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"name": "deploy-to-neocities",
"description": "Github Action to deplpoy a folder to Neocities.org",
"version": "1.1.20",
"version": "1.1.21",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
"bugs": {
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
@ -15,9 +15,8 @@
"webassert": "3.0.2"
},
"devDependencies": {
"@siteup/cli": "^4.0.0-beta.0",
"top-bun": "^7.0.0",
"auto-changelog": "^2.0.0",
"browser-sync": "^2.27.7",
"dependency-check": "^4.1.0",
"gh-release": "^7.0.0",
"npm-run-all2": "^6.0.0",
@ -36,7 +35,7 @@
"scripts": {
"build": "npm run clean && run-p build:*",
"build:action": "rm -rf dist && esbuild index.js --bundle --platform=node --target=node16 --sourcemap=external --outdir=dist",
"build:site": "siteup --src . --dest public",
"build:site": "tb --src . --dest public",
"clean": "rm -rf public && mkdir -p public",
"release": "git push --follow-tags && gh-release -y",
"start": "npm run watch",
@ -47,7 +46,6 @@
"version:build": "npm run build:action && git add dist",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"watch": "npm run clean && run-p watch:*",
"watch:serve": "browser-sync start --server 'public' --files 'public'",
"watch:site": "npm run build:site -- -w"
},
"standard": {