Skip to content

Commit

Permalink
fixed workflow typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zackbradys committed Sep 2, 2024
1 parent 515ba1f commit dc22ddd
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,12 @@ jobs:
RancherAirgapVersion=$(curl -sI https://github.com/zackbradys/rancher-airgap/releases/latest | grep -i location | sed -e 's#.*tag/v##' -e 's/^[[:space:]]*//g' -e 's/[[:space:]]*$//g')
- name: Fetch Public Key
run: curl -sfOL https://raw.githubusercontent.com/rancherfederal/carbide-releases/main/carbide-key.pub
run: |
curl -sfOL https://raw.githubusercontent.com/rancherfederal/carbide-releases/main/carbide-key.pub
- name: Authenticate to Private Registry
run: hauler login ${Registry} --username ${RegistryUsername} --pasword ${RegistryPassword}
run: |
hauler login "${Registry}" --username "${RegistryUsername}" --password "${RegistryPassword}"
- name: Set Up AWS CLI and Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down Expand Up @@ -310,56 +312,56 @@ jobs:
- name: Build RKE2
run: |
cd hauler/rke2
time hauler store sync --platform linux/amd64 --registry ${Registry} --key carbide-key.pub --files rancher-airgap-rke2.yaml
time hauler store sync --platform linux/amd64 --registry "${Registry}" --key carbide-key.pub --files rancher-airgap-rke2.yaml
time hauler store save --filename rke2-carbide.tar.zst
- name: Build Rancher
run: |
cd hauler/rancher
time hauler store sync --platform linux/amd64 --registry ${Registry} --key carbide-key.pub --files rancher-airgap-rancher.yaml
time hauler store sync --platform linux/amd64 --registry "${Registry}" --key carbide-key.pub --files rancher-airgap-rancher.yaml
time hauler store save --filename rancher-carbide.tar.zst
- name: Build Rancher Minimal
run: |
cd hauler/rancher
rm -rf store
time hauler store sync --platform linux/amd64 --registry ${Registry} --key carbide-key.pub --files rancher-airgap-rancher-minimal.yaml
time hauler store sync --platform linux/amd64 --registry "${Registry}" --key carbide-key.pub --files rancher-airgap-rancher-minimal.yaml
time hauler store save --filename rancher-minimal-carbide.tar.zst
- name: Build Longhorn
run: |
cd hauler/longhorn
time hauler store sync --platform linux/amd64 --registry ${Registry} --key carbide-key.pub --files rancher-airgap-longhorn.yaml
time hauler store sync --platform linux/amd64 --registry "${Registry}" --key carbide-key.pub --files rancher-airgap-longhorn.yaml
time hauler store save --filename longhorn-carbide.tar.zst
- name: Build NeuVector
run: |
cd hauler/neuvector
time hauler store sync --platform linux/amd64 --registry ${Registry} --key carbide-key.pub --files rancher-airgap-neuvector.yaml
time hauler store sync --platform linux/amd64 --registry "${Registry}" --key carbide-key.pub --files rancher-airgap-neuvector.yaml
time hauler store save --filename neuvector-carbide.tar.zst
- name: Build Harvester
run: |
cd hauler/harvester
time hauler store sync --platform linux/amd64 --registry ${Registry} --key carbide-key.pub --files rancher-airgap-harvester.yaml
time hauler store sync --platform linux/amd64 --registry "${Registry}" --key carbide-key.pub --files rancher-airgap-harvester.yaml
time hauler store save --filename harvester-carbide.tar.zst
- name: Build Gitea
run: |
cd hauler/gitea
time hauler store sync --platform linux/amd64 --registry ${Registry} --key carbide-key.pub --files rancher-airgap-gitea.yaml
time hauler store sync --platform linux/amd64 --registry "${Registry}" --key carbide-key.pub --files rancher-airgap-gitea.yaml
time hauler store save --filename gitea-carbide.tar.zst
- name: Build Kubevip
run: |
cd hauler/kubevip
time hauler store sync --platform linux/amd64 --registry ${Registry} --key carbide-key.pub --files rancher-airgap-kubevip.yaml
time hauler store sync --platform linux/amd64 --registry "${Registry}" --key carbide-key.pub --files rancher-airgap-kubevip.yaml
time hauler store save --filename kubevip-carbide.tar.zst
- name: Build Vault
run: |
cd hauler/vault
time hauler store sync --platform linux/amd64 --registry ${Registry} --key carbide-key.pub --files rancher-airgap-kubevip.yaml
time hauler store sync --platform linux/amd64 --registry "${Registry}" --key carbide-key.pub --files rancher-airgap-kubevip.yaml
time hauler store save --filename vault-carbide.tar.zst
- name: Fetch Hauler Binaries
Expand Down

0 comments on commit dc22ddd

Please sign in to comment.