Skip to content

Commit

Permalink
ci(cu): setup deploy in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TillaTheHun0 committed Oct 19, 2023
1 parent 0feac93 commit 3a04022
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/cu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand All @@ -44,8 +44,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
# Only deploy on main branch
# disable deploy for now.
if: github.ref == 'refs/heads/main' && false
if: github.ref == 'refs/heads/main'
# Uncomment if we ever start running the release job
# needs: [test, release]
needs: [test]
Expand All @@ -58,7 +57,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand Down
2 changes: 1 addition & 1 deletion servers/cu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Node.js image as a base image
FROM node:18-slim
FROM node:20-slim

# Placeholder for the private key environment variable
ENV WALLET=
Expand Down

0 comments on commit 3a04022

Please sign in to comment.