Compare commits
No commits in common. "421be9ab2e314672fbcaf16eac4915f9f5601e7c" and "bf220831b8d251c97fbdd732a050fc07b81b2213" have entirely different histories.
421be9ab2e
...
bf220831b8
1 changed files with 11 additions and 1 deletions
|
@ -8,7 +8,17 @@ jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: cth-ubuntu-latest
|
runs-on: cth-ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Docker Buildx
|
- name: Install Node
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install git ca-certificates curl gnupg --yes
|
||||||
|
mkdir -p /etc/apt/keyrings
|
||||||
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
||||||
|
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y nodejs
|
||||||
|
-
|
||||||
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
- uses: docker/build-push-action@v6
|
- uses: docker/build-push-action@v6
|
||||||
context:
|
context:
|
||||||
|
|
Loading…
Add table
Reference in a new issue