Skip to content

Commit

Permalink
fix workflow error and install go and make
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlincecum committed Feb 15, 2024
1 parent f3bdea8 commit 3a56696
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build-deploy-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,19 +82,19 @@ jobs:
camel_case_name=$(echo $repo_name | awk -F- '{for(i=2; i<=NF; i++) $i=toupper(substr($i,1,1)) substr($i,2); }1' OFS="")
echo "CAMEL_CASE_REPO_NAME=$camel_case_name" >> $GITHUB_ENV
- name: Set up Node.js
uses: actions/setup-node@v2
- name: Set up Go 1.21.1
uses: actions/setup-go@v3
with:
node-version: 'node' # This will install the latest stable Node.js version
npm-version: 'latest' # This will install the latest npm version
go-version: '1.21.1'

- name: Log Node and Npm Versions
run: |
echo node version $(node -v)
echo npm version $(npm -v)
- name: Check Go Version
run: go version

- name: install semver globally
run: npm install -g semver
- name: Install make
run: |
sudo apt-get update
sudo apt-get install -y make
make --version
- name: Install yq
run: sudo snap install yq
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test-remote-dev-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
build_command: "make go-quai"
needs_docker: false
include_chart: false
needs_docs: false
cloud_deploy: false
skip_deploy: true

Expand Down

0 comments on commit 3a56696

Please sign in to comment.