Skip to content

Commit

Permalink
patch: update owner name from nektos to xing
Browse files Browse the repository at this point in the history
- installer update
- test asserts
  • Loading branch information
KnisterPeter authored and github-actions committed Oct 12, 2023
1 parent 99067a9 commit a2c568d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ set -e
usage() {
this=$1
cat <<EOF
$this: download go binaries for nektos/act
$this: download go binaries for xing/act
Usage: $this [-b] bindir [-d] [tag]
-b sets bindir or installation directory, Defaults to ./bin
-d turns on debug logging
[tag] is a tag from
https://github.com/nektos/act/releases
https://github.com/xing/act/releases
If tag is missing, then the latest will be used.
Generated by godownloader
Expand Down Expand Up @@ -359,7 +359,7 @@ End of functions from https://github.com/client9/shlib
EOF

PROJECT_NAME="act"
OWNER=nektos
OWNER=xing
REPO="act"
BINARY=act
FORMAT=tar.gz
Expand Down
4 changes: 2 additions & 2 deletions pkg/runner/run_context_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,12 +376,12 @@ func TestGetGitHubContext(t *testing.T) {
actor = a
}

repo := "nektos/act"
repo := "xing/act"
if r := os.Getenv("ACT_REPOSITORY"); r != "" {
repo = r
}

owner := "nektos"
owner := "xing"
if o := os.Getenv("ACT_OWNER"); o != "" {
owner = o
}
Expand Down

0 comments on commit a2c568d

Please sign in to comment.