Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion pkg/runner/testdata/issue-1195/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
- name: print env.variable
run: |
echo ${{ env.variable }}
exit ${{ (env.variable == 'nektos') && '0' || '1'}}
exit ${{ (env.variable == 'xing') && '0' || '1'}}