Revert "Fix deploy warnings. Fixes #134."
This reverts commit 6c1036a3bb.
This commit is contained in:
parent
6c1036a3bb
commit
7f9b564a5d
1 changed files with 8 additions and 8 deletions
16
.github/workflows/deploy.yml
vendored
16
.github/workflows/deploy.yml
vendored
|
|
@ -31,7 +31,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: 🛑 Cancel Previous Runs
|
- name: 🛑 Cancel Previous Runs
|
||||||
uses: styfle/cancel-workflow-action@0.13.0
|
uses: styfle/cancel-workflow-action@0.12.1
|
||||||
|
|
||||||
- name: ⬇️ Checkout repo
|
- name: ⬇️ Checkout repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
@ -39,7 +39,7 @@ jobs:
|
||||||
- name: ⎔ Setup node
|
- name: ⎔ Setup node
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 24
|
node-version: 20
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
|
|
||||||
- name: 📥 Install dependencies
|
- name: 📥 Install dependencies
|
||||||
|
|
@ -55,7 +55,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: 🛑 Cancel Previous Runs
|
- name: 🛑 Cancel Previous Runs
|
||||||
uses: styfle/cancel-workflow-action@0.13.0
|
uses: styfle/cancel-workflow-action@0.12.1
|
||||||
|
|
||||||
- name: ⬇️ Checkout repo
|
- name: ⬇️ Checkout repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
@ -63,7 +63,7 @@ jobs:
|
||||||
- name: ⎔ Setup node
|
- name: ⎔ Setup node
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 24
|
node-version: 20
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
|
|
||||||
- name: 📥 Install dependencies
|
- name: 📥 Install dependencies
|
||||||
|
|
@ -80,7 +80,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: 🛑 Cancel Previous Runs
|
- name: 🛑 Cancel Previous Runs
|
||||||
uses: styfle/cancel-workflow-action@0.13.0
|
uses: styfle/cancel-workflow-action@0.12.1
|
||||||
|
|
||||||
- name: ⬇️ Checkout repo
|
- name: ⬇️ Checkout repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
@ -90,7 +90,7 @@ jobs:
|
||||||
|
|
||||||
# Setup cache
|
# Setup cache
|
||||||
- name: ⚡️ Cache Docker layers
|
- name: ⚡️ Cache Docker layers
|
||||||
uses: actions/cache@v5
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: /tmp/.buildx-cache
|
path: /tmp/.buildx-cache
|
||||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||||
|
|
@ -105,7 +105,7 @@ jobs:
|
||||||
password: ${{ secrets.REGISTRY_PASSWORD }}
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
||||||
|
|
||||||
- name: 🗄️ Build and Push to Container Registry
|
- name: 🗄️ Build and Push to Container Registry
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
|
|
@ -134,7 +134,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: 🚀 Deploy app to server
|
- name: 🚀 Deploy app to server
|
||||||
uses: appleboy/ssh-action@v1.2.0
|
uses: appleboy/ssh-action@v1.0.3
|
||||||
env:
|
env:
|
||||||
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
|
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
|
||||||
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
|
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue