Skip to content

Commit

Permalink
Reverted back non-working changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhop committed Aug 23, 2023
1 parent f4def8e commit a89da12
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 38 deletions.
7 changes: 0 additions & 7 deletions .github/actions/linux-alpine-node/Dockerfile

This file was deleted.

12 changes: 0 additions & 12 deletions .github/actions/linux-alpine-node/action.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/actions/linux-alpine-node/entrypoint.sh

This file was deleted.

39 changes: 32 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,22 +102,47 @@ jobs:
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

build-linux-alpine:
name: Node.js ${{matrix.node-version}} on Alpine Linux
build-linux-alpine-node-16:
name: Node.js 16 on Alpine Linux
needs: create-release
runs-on: ubuntu-latest
continue-on-error: true

strategy:
matrix:
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install, test, and create artifact
uses: ./.github/actions/linux-alpine-node-16/
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

build-linux-alpine-node-18:
name: Node.js 18 on Alpine Linux
needs: create-release
runs-on: ubuntu-latest
continue-on-error: true

steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install, test, and create artifact
uses: ./.github/actions/linux-alpine-node/
uses: ./.github/actions/linux-alpine-node-18/
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

build-linux-alpine-node-20:
name: Node.js 20 on Alpine Linux
needs: create-release
runs-on: ubuntu-latest
continue-on-error: true

steps:
- uses: actions/checkout@v3
with:
node-version: ${{matrix.node-version}}
submodules: true
- name: Install, test, and create artifact
uses: ./.github/actions/linux-alpine-node-20/
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit a89da12

Please sign in to comment.