Skip to content

Commit 65e4ad5

Browse files
committed
ci (workflows): use remote actions instead of local paths
Replaces local composite action references with remote GitHub Actions URLs. Facilitates centralized maintenance and reuse of shared actions.
1 parent 5ae8561 commit 65e4ad5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: '📚 Build Documentation'
5454
id: docfx
55-
uses: ./dotnet-docfx-build
55+
uses: framinosona/github_actions/dotnet-docfx-build@main
5656
with:
5757
config: 'docfx.json'
5858
output: 'output/docs/site'
@@ -86,7 +86,7 @@ jobs:
8686
token: ${{ secrets.GITHUB_TOKEN }}
8787

8888
- name: '🏷️ Create Git Tag'
89-
uses: ./git-tag
89+
uses: framinosona/github_actions/git-tag@main
9090
with:
9191
tag: ${{ needs.version.outputs.version-fortag }}
9292
message: 'Release ${{ needs.version.outputs.version-full }}'
@@ -101,7 +101,7 @@ jobs:
101101

102102
steps:
103103
- name: '🚀 Create GitHub Release'
104-
uses: ./github-release
104+
uses: framinosona/github_actions/github-release@main
105105
with:
106106
tag: ${{ needs.version.outputs.version-fortag }}
107107
title: 'Release ${{ needs.version.outputs.version-full }}'

0 commit comments

Comments
 (0)