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 || {
10
10
exit 1
11
11
}
12
12
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}' )
14
14
15
15
exit_code=0
16
16
for tag in $tags ; do
Original file line number Diff line number Diff line change 7
7
cargo-vet :
8
8
name : Vet Dependencies
9
9
runs-on : ubuntu-latest
10
- if : ${{ github.repository_owner == 'fermyon ' }}
10
+ if : ${{ github.repository_owner == 'spinframework ' }}
11
11
env :
12
12
CARGO_VET_VERSION : 0.7.0
13
13
steps :
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ jobs:
190
190
all-integration-tests :
191
191
# run on a larger runner for more SSD/resource access
192
192
runs-on : ubuntu-22.04-4core-spin
193
- if : ${{ github.repository_owner == 'fermyon ' }}
193
+ if : ${{ github.repository_owner == 'spinframework ' }}
194
194
steps :
195
195
- uses : actions/checkout@v3
196
196
Original file line number Diff line number Diff line change 7
7
check-tags :
8
8
name : check tags
9
9
runs-on : ubuntu-latest
10
- if : ${{ github.repository_owner == 'fermyon ' }}
10
+ if : ${{ github.repository_owner == 'spinframework ' }}
11
11
steps :
12
12
- uses : actions/checkout@v3
13
13
with :
Original file line number Diff line number Diff line change 1
1
name : Code coverage
2
2
on :
3
3
# 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
5
5
# Will need to investigate and tune usage/invocation to get passing before re-enabling.
6
6
# schedule:
7
7
# - cron: '0 0 * * *'
10
10
build-rust :
11
11
name : Build Spin
12
12
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' }}
14
14
steps :
15
15
- uses : actions/checkout@v3
16
16
33
33
code-coverage :
34
34
name : Run code coverage
35
35
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' }}
37
37
needs : build-rust
38
38
steps :
39
39
- uses : actions/checkout@v3
@@ -57,12 +57,12 @@ jobs:
57
57
env :
58
58
RUST_LOG : spin=trace
59
59
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 .
61
61
# This allows forks to run code coverage manually, without needing
62
62
# to have a codecov token for uploading.
63
63
- name : Upload to codecov.io
64
64
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 ' }}
66
66
with :
67
67
fail_ci_if_error : true
68
68
verbose : true
Original file line number Diff line number Diff line change 9
9
dispatch-rust-docs :
10
10
name : Dispatch rust-docs spin-update event
11
11
runs-on : ubuntu-latest
12
- if : ${{ github.repository_owner == 'fermyon ' }}
12
+ if : ${{ github.repository_owner == 'spinframework ' }}
13
13
steps :
14
14
- name : Repository Dispatch
15
15
uses : peter-evans/repository-dispatch@v2
16
16
with :
17
17
token : ${{ secrets.DEST_REPO_ACCESS_TOKEN }}
18
- repository : fermyon /rust-docs
18
+ repository : spinframework /rust-docs
19
19
event-type : spin-update
20
20
client-payload : ' {"ref": "${{ github.ref_name }}"}'
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ jobs:
172
172
if : |
173
173
runner.os == 'linux' &&
174
174
matrix.config.arch == 'amd64' &&
175
- github.repository_owner == 'fermyon ' &&
175
+ github.repository_owner == 'spinframework ' &&
176
176
github.ref == 'refs/heads/main'
177
177
uses : aws-actions/configure-aws-credentials@v4
178
178
with :
@@ -184,7 +184,7 @@ jobs:
184
184
if : |
185
185
runner.os == 'linux' &&
186
186
matrix.config.arch == 'amd64' &&
187
- github.repository_owner == 'fermyon ' &&
187
+ github.repository_owner == 'spinframework ' &&
188
188
github.ref == 'refs/heads/main'
189
189
run : |
190
190
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