Skip to content

Commit

Permalink
Updated build to the new reqs
Browse files Browse the repository at this point in the history
npm -> yarn
  • Loading branch information
HadesArchitect authored Feb 16, 2022
1 parent 3d926a6 commit 373c976
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@master
- name: npm install
run: docker run --rm -v ${PWD}:/opt/gcds -w /opt/gcds node:14 npm ci
- name: webpack
run: docker run --rm -v ${PWD}:/opt/gcds -w /opt/gcds node:14 node node_modules/webpack/bin/webpack.js
uses: actions/checkout@master
- name: yarn install
run: docker run --rm -v ${PWD}:/opt/gcds -w /opt/gcds node:14 yarn install
- name: yarn build
run: docker run --rm -v ${PWD}:/opt/gcds -w /opt/gcds node:14 yarn build
- name: go mod vendor
run: docker run --rm -v ${PWD}:/go/src/github.com/ha/gcp -w /go/src/github.com/ha/gcp/backend golang:1 go mod vendor
- name: go build linux
Expand Down

0 comments on commit 373c976

Please sign in to comment.