Skip to content

Commit

Permalink
ci: correct docker deploy variables (open-sauced#18)
Browse files Browse the repository at this point in the history
* fix: correct docker deploy variables

* ci: correct docker variables on workflows
  • Loading branch information
0-vortex authored Oct 25, 2021
1 parent daa933c commit 71caaa1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: "πŸ”§ setup node"
uses: actions/setup-node@v2.1.5
with:
node-version: 16
node-version: 14

- name: "πŸ”§ setup cache"
uses: actions/cache@v2
Expand All @@ -50,8 +50,8 @@ jobs:
restore-keys: |
${{ runner.os }}-node-
- name: "πŸ”§ install npm@7"
run: npm i -g npm@7
- name: "πŸ”§ install npm@latest"
run: npm i -g npm@latest

- name: "πŸ“¦ install dependencies"
run: npm ci
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: "πŸ”§ setup node"
uses: actions/setup-node@v2.1.5
with:
node-version: 16
node-version: 14

- name: "πŸ”§ setup cache"
uses: actions/cache@v2
Expand All @@ -93,8 +93,8 @@ jobs:
restore-keys: |
${{ runner.os }}-node-
- name: "πŸ”§ install npm@7"
run: npm i -g npm@7
- name: "πŸ”§ install npm@latest"
run: npm i -g npm@latest

- name: "πŸ“¦ install dependencies"
run: npm ci
Expand Down

0 comments on commit 71caaa1

Please sign in to comment.