1
0

Compare commits

...

3 Commits

Author SHA1 Message Date
felegy
c3fb26a8a2 ~ Rebuild Image
All checks were successful
/ build-and-deploy (push) Successful in 1m3s
2025-08-22 15:31:05 +00:00
felegy
a247bed8d4 ~ Rebuild Image
All checks were successful
/ build-and-deploy (push) Successful in 47s
2025-08-22 14:42:18 +00:00
felegy
cac5e8ff15 ~ Rebuild Image 2025-08-22 14:42:08 +00:00
2 changed files with 8 additions and 8 deletions

View File

@@ -16,14 +16,14 @@ jobs:
- uses: actions/checkout@v2
- name: Install kpack-cli
env:
KPACK_CLI_VERSION: "0.13.0"
KPACK_CLI_VERSION: 0.13.0
KPACK_CLI_SHA256: 52f0c927a1350f4f1bb281575ec246f406fb96aa69dc974ed10a2fe52c538158
working-directory: /tmp
run: |
mkdir -p kp-binaries
curl -sL "https://github.com/buildpacks-community/kpack-cli/releases/download/v${KPACK_CLI_VERSION}/kp-linux-amd64-${KPACK_CLI_VERSION}" -o kp-binaries/kp-linux-amd64-${KPACK_CLI_VERSION}
curl -sLO "https://github.com/buildpacks-community/kpack-cli/releases/download/v${KPACK_CLI_VERSION}/kp-linux-amd64-${KPACK_CLI_VERSION}.sha256"
sha256sum -c kp-linux-amd64-${KPACK_CLI_VERSION}.sha256 || exit 1
sudo mv kp-binaries/kp-linux-amd64-${KPACK_CLI_VERSION} /usr/local/bin/kp
set -ex
curl -sLO "https://github.com/buildpacks-community/kpack-cli/releases/download/v${KPACK_CLI_VERSION}/kp-linux-amd64-${KPACK_CLI_VERSION}"
echo "${KPACK_CLI_SHA256} kp-linux-amd64-${KPACK_CLI_VERSION}" | sha256sum --check || exit 1
sudo mv kp-linux-amd64-${KPACK_CLI_VERSION} /usr/local/bin/kp
sudo chmod +x /usr/local/bin/kp
kp version
- name: Install kubectl

View File

@@ -14,9 +14,9 @@ jobs:
- uses: felegy/mirror-action@master
with:
REMOTE: ${{ secrets.DEPLOY_REPO_URL }}
REMOTE: git@${{ secrets.DEPLOY_REPO }}:${{ github.repository }}.git
SSH_CONFIG: |
Host ssh-git.saito.systems
Host ${{ secrets.DEPLOY_REPO }}
ProxyCommand cloudflared access ssh --hostname %h
GIT_SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_SSH_KEY }}
GIT_SSH_NO_VERIFY_HOST: "true"