mirror of
https://github.com/kou029w/_.git
synced 2025-02-04 16:18:41 +00:00
Compare commits
4 commits
0ff072fff6
...
393a599d7a
Author | SHA1 | Date | |
---|---|---|---|
|
393a599d7a | ||
962b721a24 | |||
24ac4ed7b1 | |||
|
d6b110edb8 |
3 changed files with 50 additions and 3 deletions
18
.github/workflows/update-empty-branch.yml
vendored
Normal file
18
.github/workflows/update-empty-branch.yml
vendored
Normal 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
|
29
.github/workflows/update-latest-release.yml
vendored
Normal file
29
.github/workflows/update-latest-release.yml
vendored
Normal 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 }}
|
|
@ -1134,9 +1134,9 @@ decimal.js@^10.2.1:
|
||||||
integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==
|
integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==
|
||||||
|
|
||||||
decode-uri-component@^0.2.0:
|
decode-uri-component@^0.2.0:
|
||||||
version "0.2.0"
|
version "0.2.2"
|
||||||
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
|
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
|
||||||
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
|
integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
|
||||||
|
|
||||||
deep-is@~0.1.3:
|
deep-is@~0.1.3:
|
||||||
version "0.1.3"
|
version "0.1.3"
|
||||||
|
|
Loading…
Add table
Reference in a new issue