Skip to content

Commit e84e7bb

Browse files
committed
Fix repo name in GitHub workflows.
1 parent 1ba1069 commit e84e7bb

File tree

3 files changed

+29
-29
lines changed

3 files changed

+29
-29
lines changed

.github/workflows/test_build_quick.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,42 +25,42 @@ jobs:
2525
uses: actions/checkout@v2
2626

2727
- name: 'Install Prerequisites'
28-
uses: c-lipka/povray/.github/actions/unix_getlibs_apt@master
28+
uses: POV-Ray/povray/.github/actions/unix_getlibs_apt@master
2929

3030
- name: 'Prebuild'
31-
uses: c-lipka/povray/.github/actions/unix_prebuild@master
31+
uses: POV-Ray/povray/.github/actions/unix_prebuild@master
3232
- name: 'Sanity-Check Working Tree'
33-
uses: c-lipka/povray/.github/actions/unix_check_repo@master
33+
uses: POV-Ray/povray/.github/actions/unix_check_repo@master
3434

3535
- name: 'Configure'
36-
uses: c-lipka/povray/.github/actions/unix_configure@master
36+
uses: POV-Ray/povray/.github/actions/unix_configure@master
3737
- name: 'Sanity-Check Working Tree'
38-
uses: c-lipka/povray/.github/actions/unix_check_repo@master
38+
uses: POV-Ray/povray/.github/actions/unix_check_repo@master
3939

4040
- name: 'Bundle Artifacts for Diagnostics'
4141
if: ${{ always() }}
42-
uses: c-lipka/povray/.github/actions/unix_bundle_ignored@master
42+
uses: POV-Ray/povray/.github/actions/unix_bundle_ignored@master
4343
with:
4444
name: artifact_diag_unix.tar
4545

4646
- name: 'Build'
47-
uses: c-lipka/povray/.github/actions/unix_make@master
47+
uses: POV-Ray/povray/.github/actions/unix_make@master
4848
- name: 'Sanity-Check Working Tree'
49-
uses: c-lipka/povray/.github/actions/unix_check_repo@master
49+
uses: POV-Ray/povray/.github/actions/unix_check_repo@master
5050

5151
- name: 'Check Functionality'
52-
uses: c-lipka/povray/.github/actions/unix_make@master
52+
uses: POV-Ray/povray/.github/actions/unix_make@master
5353
with:
5454
make-target: check
5555
- name: 'Sanity-Check Working Tree'
56-
uses: c-lipka/povray/.github/actions/unix_check_repo@master
56+
uses: POV-Ray/povray/.github/actions/unix_check_repo@master
5757

5858
# - name: 'Install'
59-
# uses: c-lipka/povray/.github/actions/unix_make@master
59+
# uses: POV-Ray/povray/.github/actions/unix_make@master
6060
# with:
6161
# make-target: install
6262
# - name: 'Sanity-Check Working Tree'
63-
# uses: c-lipka/povray/.github/actions/unix_check_repo@master
63+
# uses: POV-Ray/povray/.github/actions/unix_check_repo@master
6464

6565
- name: 'Upload Artifacs for Diagnostics'
6666
if: ${{ failure() }}
@@ -83,7 +83,7 @@ jobs:
8383
uses: microsoft/[email protected]
8484

8585
- name: 'Build'
86-
uses: c-lipka/povray/.github/actions/windows_build@master
86+
uses: POV-Ray/povray/.github/actions/windows_build@master
8787
with:
8888
pov-ray-build-id: gh${{github.run_number}}
8989
solution: vs2015
@@ -92,4 +92,4 @@ jobs:
9292
toolset: v142
9393
msbuild-options: ''
9494
- name: 'Sanity-Check Working Tree'
95-
uses: c-lipka/povray/.github/actions/unix_check_repo@master
95+
uses: POV-Ray/povray/.github/actions/unix_check_repo@master

.github/workflows/test_build_unix.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,49 +51,49 @@ jobs:
5151

5252
- name: 'Install Prerequisites (apt)'
5353
if: ${{ matrix.package-manager == 'apt' }}
54-
uses: c-lipka/povray/.github/actions/unix_getlibs_apt@master
54+
uses: POV-Ray/povray/.github/actions/unix_getlibs_apt@master
5555
- name: 'Install Prerequisites (brew)'
5656
if: ${{ matrix.package-manager == 'brew' }}
57-
uses: c-lipka/povray/.github/actions/unix_getlibs_brew@master
57+
uses: POV-Ray/povray/.github/actions/unix_getlibs_brew@master
5858

5959
- name: 'Prebuild'
60-
uses: c-lipka/povray/.github/actions/unix_prebuild@master
60+
uses: POV-Ray/povray/.github/actions/unix_prebuild@master
6161
- name: 'Sanity-Check Working Tree'
62-
uses: c-lipka/povray/.github/actions/unix_check_repo@master
62+
uses: POV-Ray/povray/.github/actions/unix_check_repo@master
6363

6464
- name: 'Configure'
65-
uses: c-lipka/povray/.github/actions/unix_configure@master
65+
uses: POV-Ray/povray/.github/actions/unix_configure@master
6666
with:
6767
c-compiler: ${{ matrix.c-compiler }}
6868
cxx-compiler: ${{ matrix.cxx-compiler }}
6969
configure-options: ${{ matrix.configure-options }}
7070
- name: 'Sanity-Check Working Tree'
71-
uses: c-lipka/povray/.github/actions/unix_check_repo@master
71+
uses: POV-Ray/povray/.github/actions/unix_check_repo@master
7272

7373
- name: 'Bundle Artifacts for Diagnostics'
7474
if: ${{ always() }}
75-
uses: c-lipka/povray/.github/actions/unix_bundle_ignored@master
75+
uses: POV-Ray/povray/.github/actions/unix_bundle_ignored@master
7676
with:
7777
name: artifact_diag_${{ matrix.os }}_${{ matrix.c-compiler }}.tar
7878

7979
- name: 'Build'
80-
uses: c-lipka/povray/.github/actions/unix_make@master
80+
uses: POV-Ray/povray/.github/actions/unix_make@master
8181
- name: 'Sanity-Check Working Tree'
82-
uses: c-lipka/povray/.github/actions/unix_check_repo@master
82+
uses: POV-Ray/povray/.github/actions/unix_check_repo@master
8383

8484
- name: 'Check Functionality'
85-
uses: c-lipka/povray/.github/actions/unix_make@master
85+
uses: POV-Ray/povray/.github/actions/unix_make@master
8686
with:
8787
make-target: check
8888
- name: 'Sanity-Check Working Tree'
89-
uses: c-lipka/povray/.github/actions/unix_check_repo@master
89+
uses: POV-Ray/povray/.github/actions/unix_check_repo@master
9090

9191
# - name: 'Install'
92-
# uses: c-lipka/povray/.github/actions/unix_make@master
92+
# uses: POV-Ray/povray/.github/actions/unix_make@master
9393
# with:
9494
# make-target: install
9595
# - name: 'Sanity-Check Working Tree'
96-
# uses: c-lipka/povray/.github/actions/unix_check_repo@master
96+
# uses: POV-Ray/povray/.github/actions/unix_check_repo@master
9797

9898
- name: 'Upload Artifacs for Diagnostics'
9999
if: ${{ failure() }}

.github/workflows/test_build_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
uses: microsoft/[email protected]
7272

7373
- name: 'Build'
74-
uses: c-lipka/povray/.github/actions/windows_build@master
74+
uses: POV-Ray/povray/.github/actions/windows_build@master
7575
with:
7676
pov-ray-build-id: ghvs${{matrix.visual-studio}}${{matrix.compatibility}}${{github.run_number}}
7777
solution: ${{matrix.solution}}
@@ -80,4 +80,4 @@ jobs:
8080
toolset: ${{matrix.toolset}}${{matrix.toolset-variant}}
8181
msbuild-options: ${{matrix.msbuild-options}}
8282
- name: 'Sanity-Check Working Tree'
83-
uses: c-lipka/povray/.github/actions/unix_check_repo@master
83+
uses: POV-Ray/povray/.github/actions/unix_check_repo@master

0 commit comments

Comments
 (0)