Skip to content

Commit

Permalink
Trying to fix the node version issue in the publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-reis committed Aug 25, 2023
1 parent 3806cf7 commit 9b0ed13
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/docker-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: node:16-alpine
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Fetch Prune Unshallow Tags
run: git fetch --prune --unshallow --tags
- name: Extract branch name
Expand Down

0 comments on commit 9b0ed13

Please sign in to comment.