File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ which gh &> /dev/null || {
1010 exit 1
1111}
1212
13- tags=$( gh release list --repo fermyon /spin --exclude-pre-releases --exclude-drafts | grep -v TITLE | awk ' {print $1}' )
13+ tags=$( gh release list --repo spinframework /spin --exclude-pre-releases --exclude-drafts | grep -v TITLE | awk ' {print $1}' )
1414
1515exit_code=0
1616for tag in $tags ; do
Original file line number Diff line number Diff line change 77 cargo-vet :
88 name : Vet Dependencies
99 runs-on : ubuntu-latest
10- if : ${{ github.repository_owner == 'fermyon ' }}
10+ if : ${{ github.repository_owner == 'spinframework ' }}
1111 env :
1212 CARGO_VET_VERSION : 0.7.0
1313 steps :
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ jobs:
190190 all-integration-tests :
191191 # run on a larger runner for more SSD/resource access
192192 runs-on : ubuntu-22.04-4core-spin
193- if : ${{ github.repository_owner == 'fermyon ' }}
193+ if : ${{ github.repository_owner == 'spinframework ' }}
194194 steps :
195195 - uses : actions/checkout@v3
196196
Original file line number Diff line number Diff line change 77 check-tags :
88 name : check tags
99 runs-on : ubuntu-latest
10- if : ${{ github.repository_owner == 'fermyon ' }}
10+ if : ${{ github.repository_owner == 'spinframework ' }}
1111 steps :
1212 - uses : actions/checkout@v3
1313 with :
Original file line number Diff line number Diff line change 11name : Code coverage
22on :
33 # Currently disabled due to cargo-tarpaulin timing out on the GH Ubuntu hosts.
4- # Ref: https://github.com/fermyon /spin/issues/1350
4+ # Ref: https://github.com/spinframework /spin/issues/1350
55 # Will need to investigate and tune usage/invocation to get passing before re-enabling.
66 # schedule:
77 # - cron: '0 0 * * *'
1010 build-rust :
1111 name : Build Spin
1212 runs-on : ubuntu-latest
13- if : ${{ github.repository_owner == 'fermyon ' }} || ${{ github.event_name == 'workflow_dispatch' }}
13+ if : ${{ github.repository_owner == 'spinframework ' }} || ${{ github.event_name == 'workflow_dispatch' }}
1414 steps :
1515 - uses : actions/checkout@v3
1616
3333 code-coverage :
3434 name : Run code coverage
3535 runs-on : ubuntu-latest
36- if : ${{ github.repository_owner == 'fermyon ' }} || ${{ github.event_name == 'workflow_dispatch' }}
36+ if : ${{ github.repository_owner == 'spinframework ' }} || ${{ github.event_name == 'workflow_dispatch' }}
3737 needs : build-rust
3838 steps :
3939 - uses : actions/checkout@v3
@@ -57,12 +57,12 @@ jobs:
5757 env :
5858 RUST_LOG : spin=trace
5959
60- # Only attempt to upload to codecov.io if the repo owner is fermyon .
60+ # Only attempt to upload to codecov.io if the repo owner is spinframework .
6161 # This allows forks to run code coverage manually, without needing
6262 # to have a codecov token for uploading.
6363 - name : Upload to codecov.io
6464 uses : codecov/codecov-action@v3
65- if : ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'fermyon ' }}
65+ if : ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'spinframework ' }}
6666 with :
6767 fail_ci_if_error : true
6868 verbose : true
Original file line number Diff line number Diff line change 99 dispatch-rust-docs :
1010 name : Dispatch rust-docs spin-update event
1111 runs-on : ubuntu-latest
12- if : ${{ github.repository_owner == 'fermyon ' }}
12+ if : ${{ github.repository_owner == 'spinframework ' }}
1313 steps :
1414 - name : Repository Dispatch
1515 uses : peter-evans/repository-dispatch@v2
1616 with :
1717 token : ${{ secrets.DEST_REPO_ACCESS_TOKEN }}
18- repository : fermyon /rust-docs
18+ repository : spinframework /rust-docs
1919 event-type : spin-update
2020 client-payload : ' {"ref": "${{ github.ref_name }}"}'
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ jobs:
172172 if : |
173173 runner.os == 'linux' &&
174174 matrix.config.arch == 'amd64' &&
175- github.repository_owner == 'fermyon ' &&
175+ github.repository_owner == 'spinframework ' &&
176176 github.ref == 'refs/heads/main'
177177 uses : aws-actions/configure-aws-credentials@v4
178178 with :
@@ -184,7 +184,7 @@ jobs:
184184 if : |
185185 runner.os == 'linux' &&
186186 matrix.config.arch == 'amd64' &&
187- github.repository_owner == 'fermyon ' &&
187+ github.repository_owner == 'spinframework ' &&
188188 github.ref == 'refs/heads/main'
189189 run : |
190190 aws s3 cp _dist/spin-${{ env.RELEASE_VERSION }}-${{ env.RUNNER_OS }}-${{ matrix.config.arch }}.tar.gz s3://${{ secrets.SPIN_RELEASE_ARTIFACTS_REPO }}/spin-${{ env.RELEASE_VERSION }}-${{ env.RUNNER_OS }}-${{ matrix.config.arch }}.tar.gz --acl public-read
You can’t perform that action at this time.
0 commit comments