Skip to content

Commit

Permalink
fix: OR-1955 add paket commands to push to staging
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Lesage committed Oct 17, 2023
1 parent 130c806 commit bc8e8a0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ jobs:
test: "test"

steps:


- name: Checkout Code
uses: actions/checkout@v3

Expand Down Expand Up @@ -436,6 +438,24 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3

- name: Cache Paket
uses: actions/cache@v3
env:
cache-name: cache-paket
with:
path: packages
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('paket.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
- name: Paket install
shell: bash
run: dotnet paket install

- name: Paket restore
shell: bash
run: dotnet paket restore

- name: Node version
shell: bash
run: node --version
Expand Down

0 comments on commit bc8e8a0

Please sign in to comment.