mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
comment out artifacts until I can find where they go
This commit is contained in:
parent
6d03997201
commit
60c28ce989
24
.github/workflows/build-for-windows.yml
vendored
24
.github/workflows/build-for-windows.yml
vendored
@ -34,6 +34,11 @@ jobs:
|
||||
npm install --global yarn
|
||||
yarn --version
|
||||
|
||||
# install GNU make
|
||||
- name: Install gnu make using choclatey
|
||||
uses: crazy-max/ghaction-chocolatey@v2
|
||||
run: choco install make
|
||||
|
||||
# Sets up the node_modules folder with the Windows version of the dependencies
|
||||
- name: Yarn install
|
||||
run: |
|
||||
@ -43,3 +48,22 @@ jobs:
|
||||
# Downloads kubernetes dependencies
|
||||
- name: Download client binaries
|
||||
run: yarn download:binaries
|
||||
|
||||
# Fix the version of the build
|
||||
- name: Fix Build version
|
||||
run: yarn run npm:fix-build-version
|
||||
|
||||
# Compile
|
||||
- name: Compile
|
||||
run: yarn run compile
|
||||
|
||||
# clear our pem folder before publish
|
||||
# https://github.com/ukoloff/win-ca#clear-pem-folder-on-publish
|
||||
- name: Clear CA trust
|
||||
run: rm -rf node_modules/win-ca/pem
|
||||
|
||||
# - name: Upload artifacts
|
||||
# uses: actions/upload-artifact@v3
|
||||
# with:
|
||||
# name: built-artifacts
|
||||
# path: path/to/artifact/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user