Skip to content

Commit

Permalink
base runner off of ubuntu image instead of node container
Browse files Browse the repository at this point in the history
  • Loading branch information
irmiller22 committed Mar 5, 2024
1 parent eab3bce commit a5a7153
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,21 @@ jobs:
press:
needs: core
runs-on: ubuntu-latest
container:
image: node:14-alpine
# container:
# image: node:14-alpine
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Docker client / Git
run: apk add --no-cache docker git
- uses: actions/setup-node@v3
with:
node-version: '14'

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ca-certificates git openssh-client
yarn --pure-lockfile --cache-folder /tmp/.yarn_cache
- name: NPM login
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPMJS_TOKEN }}" >> ~/.npmrc
Expand Down

0 comments on commit a5a7153

Please sign in to comment.