Skip to content

Commit f20f2be

Browse files
ci: fix composite action path (#4)
1 parent a9f7ce9 commit f20f2be

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: .github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
# if: needs.ci-server.result == 'success'
103103
# runs-on: ubuntu-latest
104104
# steps:
105-
# - uses: reearth/actions/.github/actions/deploy-cloud-run@main
105+
# - uses: reearth/actions/deploy-cloud-run@main
106106
# with:
107107
# service: ${{ vars.SERVICE_NAME_API }}
108108
# image: ${{ needs.build-server.outputs.image }}
@@ -115,7 +115,7 @@ jobs:
115115
# if: needs.ci-web.result == 'success'
116116
# runs-on: ubuntu-latest
117117
# steps:
118-
# - uses: reearth/actions/.github/actions/deploy-cloud-run@main
118+
# - uses: reearth/actions/deploy-cloud-run@main
119119
# with:
120120
# service: ${{ vars.SERVICE_NAME_WEB }}
121121
# image: ${{ needs.build-web.outputs.image }}

Diff for: .github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
runs-on: ubuntu-latest
1818
if: github.ref == 'refs/heads/release'
1919
steps:
20-
- uses: reearth/actions/.github/actions/release@main
20+
- uses: reearth/actions/release@main
2121
with:
2222
version: ${{ inputs.version }}

Diff for: .github/workflows/stage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ jobs:
77
runs-on: ubuntu-latest
88
if: github.ref == 'refs/heads/main'
99
steps:
10-
- uses: reearth/actions/.github/actions/stage@main
10+
- uses: reearth/actions/stage@main

0 commit comments

Comments
 (0)