1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-02-04 16:18:41 +00:00

Compare commits

...

4 commits

Author SHA1 Message Date
dependabot[bot]
aaa2cd193e
Merge 4c9d891503 into 962b721a24 2023-10-30 09:44:51 +00:00
962b721a24
create update-empty-branch 2023-10-30 17:44:00 +09:00
24ac4ed7b1
create update-latest-release action 2023-10-30 16:40:54 +09:00
dependabot[bot]
4c9d891503
Bump minimatch from 3.0.4 to 3.1.2 in /npm-run-script
Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.2.
- [Release notes](https://github.com/isaacs/minimatch/releases)
- [Commits](https://github.com/isaacs/minimatch/compare/v3.0.4...v3.1.2)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-12 10:21:06 +00:00
3 changed files with 53 additions and 6 deletions

View file

@ -0,0 +1,18 @@
name: update-empty-branch
on:
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git worktree add --track -b empty empty origin/empty
rm -rf empty/*
git config user.name bot
git config user.email '<>'
git -C empty add --all
git -C empty commit --allow-empty --message "based on $(git rev-parse @)"
git -C empty push origin empty

View file

@ -0,0 +1,29 @@
name: update-latest-release
on:
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo ok > hello.txt
# - uses: actions/github-script@v6
# with:
# script: |
# const { data: release } = await github.rest.repos.getLatestRelease(context.repo);
# const name = "hello.txt";
# const data = await require("node:fs").promises.readFile(name);
# await github.rest.repos.uploadReleaseAsset({
# ...context.repo,
# release_id: release.id,
# name,
# data,
# });
- run: |
latest=$(gh release view --json tagName --jq .tagName)
gh release delete-asset "${latest}" hello.txt || :
gh release upload "${latest}" hello.txt
env:
GH_TOKEN: ${{ github.token }}

View file

@ -421,9 +421,9 @@
} }
}, },
"node_modules/minimatch": { "node_modules/minimatch": {
"version": "3.0.4", "version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"brace-expansion": "^1.1.7" "brace-expansion": "^1.1.7"
@ -1088,9 +1088,9 @@
"dev": true "dev": true
}, },
"minimatch": { "minimatch": {
"version": "3.0.4", "version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"dev": true, "dev": true,
"requires": { "requires": {
"brace-expansion": "^1.1.7" "brace-expansion": "^1.1.7"