mirror of
https://github.com/yanhao98/composite-actions.git
synced 2025-07-14 07:10:48 +08:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
e01a0b34d8 | |||
5195d74ff1 | |||
6e58674f53 | |||
ced3572c0a | |||
3ef624f5d9 | |||
f7f95de95a |
4
.github/workflows/deploy-dist-to-surge.yml
vendored
4
.github/workflows/deploy-dist-to-surge.yml
vendored
@ -1,4 +1,8 @@
|
|||||||
on:
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "deploy-dist-to-surge.yml/**"
|
||||||
|
- ".github/workflows/deploy-dist-to-surge.yml"
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- "deploy-dist-to-surge.yml/**"
|
- "deploy-dist-to-surge.yml/**"
|
||||||
|
10
.github/workflows/docker-build-push.yml
vendored
10
.github/workflows/docker-build-push.yml
vendored
@ -1,4 +1,8 @@
|
|||||||
on:
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "docker-build-push/**"
|
||||||
|
- ".github/workflows/docker-build-push.yml"
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- "docker-build-push/**"
|
- "docker-build-push/**"
|
||||||
@ -8,7 +12,11 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
job:
|
job:
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-15] # https://docs.github.com/zh/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#用于公共存储库的-github-托管的标准运行器
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
- uses: yanhao98/semantic-release-action@main
|
- uses: yanhao98/semantic-release-action@main
|
||||||
|
6
.github/workflows/setup-node-environment.yml
vendored
6
.github/workflows/setup-node-environment.yml
vendored
@ -1,4 +1,8 @@
|
|||||||
on:
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "setup-node-environment/**"
|
||||||
|
- ".github/workflows/setup-node-environment.yml"
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- "setup-node-environment/**"
|
- "setup-node-environment/**"
|
||||||
@ -8,11 +12,11 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
job:
|
job:
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
container-image: ["", "yanhao98/runner-images:pnpm"]
|
container-image: ["", "yanhao98/runner-images:pnpm"]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: ${{ matrix.container-image }}
|
image: ${{ matrix.container-image }}
|
||||||
steps:
|
steps:
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": [
|
"extends": [
|
||||||
"https://git.1-h.cc/examples/renovate-example/raw/branch/main/default.json5"
|
"https://git.1-h.cc/examples/renovate-example/raw/branch/main/default.json5",
|
||||||
|
":automergeAll"
|
||||||
],
|
],
|
||||||
"dependencyDashboard": false
|
"dependencyDashboard": false
|
||||||
}
|
}
|
Reference in New Issue
Block a user