Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ contact_links:
url: https://argo-workflows.readthedocs.io/en/latest/
about: Much help can be found in the docs
- name: Ask a question
url: https://github.com/argoproj/argo-workflows/discussions/new
url: https://github.com/codefresh-io/argo-workflows/discussions/new
about: Ask a question or start a discussion about workflows
- name: Chat on Slack
url: https://argoproj.github.io/community/join-slack
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ permissions:
jobs:
build-linux:
name: Build & push linux
if: github.repository == 'argoproj/argo-workflows'
# Available runners are listable here if you have access https://github.com/organizations/argoproj/settings/actions/runners
if: github.repository == 'codefresh-io/argo-workflows'
# Available runners are listable here if you have access https://github.com/organizations/codefresh-io/settings/actions/runners
# Current oracle runners are:
# # amd64
# oracle-vm-2cpu-8gb-x86-64
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:

build-windows:
name: Build & push windows
if: github.repository == 'argoproj/argo-workflows'
if: github.repository == 'codefresh-io/argo-workflows'
runs-on: windows-2022
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

push-images:
name: Push manifest with all images
if: github.repository == 'argoproj/argo-workflows'
if: github.repository == 'codefresh-io/argo-workflows'
runs-on: oracle-vm-4cpu-16gb-x86-64
needs: [ build-linux, build-windows ]
steps:
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:

test-images-linux-amd64:
name: Try pulling linux/amd64
if: github.repository == 'argoproj/argo-workflows'
if: github.repository == 'codefresh-io/argo-workflows'
runs-on: oracle-vm-4cpu-16gb-x86-64
needs: [ push-images ]
strategy:
Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:

test-images-windows:
name: Try pulling windows
if: github.repository == 'argoproj/argo-workflows'
if: github.repository == 'codefresh-io/argo-workflows'
runs-on: windows-2022
needs: [ push-images ]
steps:
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:

build-ui:
name: Build UI
if: github.repository == 'argoproj/argo-workflows'
if: github.repository == 'codefresh-io/argo-workflows'
runs-on: oracle-vm-16cpu-64gb-x86-64
env:
NODE_OPTIONS: --max-old-space-size=4096
Expand All @@ -324,7 +324,7 @@ jobs:

build-clis:
name: Build CLI ${{ matrix.goos }}-${{ matrix.goarch }}
if: github.repository == 'argoproj/argo-workflows'
if: github.repository == 'codefresh-io/argo-workflows'
needs: [ build-ui ]
runs-on: oracle-vm-8cpu-32gb-x86-64
strategy:
Expand Down Expand Up @@ -383,7 +383,7 @@ jobs:
permissions:
contents: write # for softprops/action-gh-release to create GitHub release
runs-on: oracle-vm-16cpu-64gb-x86-64
if: github.repository == 'argoproj/argo-workflows'
if: github.repository == 'codefresh-io/argo-workflows'
needs: [ push-images, test-images-linux-amd64, test-images-windows, build-clis ]
env:
NODE_OPTIONS: --max-old-space-size=4096
Expand Down Expand Up @@ -417,10 +417,10 @@ jobs:
- run: generator -o dist -p .
- run: yarn --cwd ui install
- run: generator -o dist -p ui
- run: bom generate --image quay.io/argoproj/workflow-controller:$VERSION -o dist/workflow-controller.spdx
- run: bom generate --image quay.io/argoproj/argocli:$VERSION -o dist/argocli.spdx
- run: bom generate --image quay.io/argoproj/argoexec:$VERSION -o dist/argoexec.spdx
- run: bom generate --image quay.io/argoproj/argoexec:$VERSION-nonroot -o dist/argoexec-nonroot.spdx
- run: bom generate --image quay.io/codefresh-io/workflow-controller:$VERSION -o dist/workflow-controller.spdx
- run: bom generate --image quay.io/codefresh-io/argocli:$VERSION -o dist/argocli.spdx
- run: bom generate --image quay.io/codefresh-io/argoexec:$VERSION -o dist/argoexec.spdx
- run: bom generate --image quay.io/codefresh-io/argoexec:$VERSION-nonroot -o dist/argoexec-nonroot.spdx
# pack the boms into one file to make it easy to download
- run: tar -zcf dist/sbom.tar.gz dist/*.spdx
- run: make release-notes VERSION=$VERSION
Expand Down
4 changes: 2 additions & 2 deletions hack/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if [[ "$(uname -s)" != "Darwin" ]]; then
fi

# Download the binary
curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/$version/argo-$ARGO_OS-amd64.gz"
curl -sLO "https://github.com/codefresh-io/argo-workflows/releases/download/$version/argo-$ARGO_OS-amd64.gz"

# Unzip
gunzip "argo-$ARGO_OS-amd64.gz"
Expand All @@ -43,5 +43,5 @@ argo version

```bash
kubectl create namespace argo
kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/$version/install.yaml
kubectl apply -n argo -f https://github.com/codefresh-io/argo-workflows/releases/download/$version/install.yaml
```
Loading