Compare commits

...

14 Commits

Author SHA1 Message Date
MaksimZhukov
5803dd40ce Merge pull request #44 from MaksimZhukov/v-mazhuk/fix-powerhell-issue-with-paths
Fix PowerShell issue with relative paths
2020-11-17 20:54:45 +03:00
MaksimZhukov
15c3ac315a Fix powershell issue with paths 2020-11-17 19:54:37 +03:00
MaksimZhukov
4790533e80 Merge pull request #43 from MaksimZhukov/v-mazhuk/add-pull-request-event-trigger
Add ability to trigger packages generation on PRs
2020-11-03 15:14:48 +03:00
MaksimZhukov
c01749b1c4 Add ability to trigger packages generation on PRs 2020-11-02 15:38:27 +03:00
Maxim Lobanov
01407a89d3 Merge pull request #42 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 10/28/2020
2020-10-28 10:20:56 +03:00
Service account
ff6bcb4ec0 Update versions-manifest 2020-10-28 06:37:18 +00:00
MaksimZhukov
a229d53240 Merge pull request #41 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 10/16/2020
2020-10-16 18:22:35 +03:00
Service account
593745d7c2 Update versions-manifest 2020-10-16 15:09:09 +00:00
Maxim Lobanov
e459abbdbe Merge pull request #40 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 10/08/2020
2020-10-08 09:42:19 +03:00
Service account
f01c560f7f Update versions-manifest 2020-10-08 06:36:38 +00:00
Alena Sviridenko
2b37bf1f1e Merge pull request #39 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 10/07/2020
2020-10-07 11:18:42 +03:00
Service account
fe299f9388 Update versions-manifest 2020-10-07 08:17:04 +00:00
Alena Sviridenko
bbb4ceccb0 Merge pull request #37 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 09/30/2020
2020-09-30 18:10:00 +03:00
Service account
d8a00be11c Update versions-manifest 2020-09-30 07:13:33 +00:00
5 changed files with 168 additions and 11 deletions

View File

@@ -10,19 +10,26 @@ on:
description: 'Whether to publish releases'
required: true
default: 'false'
pull_request:
paths-ignore:
- 'versions-manifest.json'
- 'LICENSE'
- '**.md'
branches:
- 'main'
env:
VERSION: ${{ github.event.inputs.VERSION }}
VERSION: ${{ github.event.inputs.VERSION || '14.0.0' }}
defaults:
run:
shell: pwsh
jobs:
build_node:
name: Build Node.js ${{ github.event.inputs.VERSION }} [${{ matrix.platform }}]
name: Build Node.js ${{ github.event.inputs.VERSION || '14.0.0' }} [${{ matrix.platform }}]
runs-on: ubuntu-latest
env:
ARTIFACT_NAME: node-${{ github.event.inputs.VERSION }}-${{ matrix.platform }}-x64
ARTIFACT_NAME: node-${{ github.event.inputs.VERSION || '14.0.0' }}-${{ matrix.platform }}-x64
strategy:
fail-fast: false
matrix:
@@ -44,11 +51,11 @@ jobs:
path: ${{ runner.temp }}/artifact
test_node:
name: Test Node.js ${{ github.event.inputs.VERSION }} [${{ matrix.platform }}]
name: Test Node.js ${{ github.event.inputs.VERSION || '14.0.0' }} [${{ matrix.platform }}]
needs: build_node
runs-on: ${{ matrix.os }}
env:
ARTIFACT_NAME: node-${{ github.event.inputs.VERSION }}-${{ matrix.platform }}-x64
ARTIFACT_NAME: node-${{ github.event.inputs.VERSION || '14.0.0' }}-${{ matrix.platform }}-x64
strategy:
fail-fast: false
matrix:
@@ -89,7 +96,7 @@ jobs:
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
- name: Setup Node.js ${{ env.VERSION }}
uses: actions/setup-node@v2.1.1
uses: actions/setup-node@v2.1.2
with:
node-version: ${{ env.VERSION }}
@@ -110,7 +117,7 @@ jobs:
publish_release:
name: Publish release
if: github.event.inputs.PUBLISH_RELEASES == 'true'
if: github.event_name == 'workflow_dispatch' && github.event.inputs.PUBLISH_RELEASES == 'true'
needs: test_node
runs-on: ubuntu-latest
steps:

View File

@@ -1,5 +1,5 @@
using module "./builders/win-node-builder.psm1"
using module "./builders/nix-node-builder.psm1"
using module "./win-node-builder.psm1"
using module "./nix-node-builder.psm1"
<#
.SYNOPSIS

View File

@@ -1,4 +1,4 @@
using module "./builders/node-builder.psm1"
using module "./node-builder.psm1"
class NixNodeBuilder : NodeBuilder {
<#

View File

@@ -1,4 +1,4 @@
using module "./builders/node-builder.psm1"
using module "./node-builder.psm1"
class WinNodeBuilder : NodeBuilder {
<#

View File

@@ -1,4 +1,104 @@
[
{
"version": "14.15.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/14.15.0-333017252",
"files": [
{
"filename": "node-14.15.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.0-333017252/node-14.15.0-darwin-x64.tar.gz"
},
{
"filename": "node-14.15.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.0-333017252/node-14.15.0-linux-x64.tar.gz"
},
{
"filename": "node-14.15.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.0-333017252/node-14.15.0-win32-x64.7z"
}
]
},
{
"version": "14.14.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/14.14.0-310900524",
"files": [
{
"filename": "node-14.14.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.14.0-310900524/node-14.14.0-darwin-x64.tar.gz"
},
{
"filename": "node-14.14.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.14.0-310900524/node-14.14.0-linux-x64.tar.gz"
},
{
"filename": "node-14.14.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.14.0-310900524/node-14.14.0-win32-x64.7z"
}
]
},
{
"version": "14.13.1",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/14.13.1-294907768",
"files": [
{
"filename": "node-14.13.1-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.1-294907768/node-14.13.1-darwin-x64.tar.gz"
},
{
"filename": "node-14.13.1-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.1-294907768/node-14.13.1-linux-x64.tar.gz"
},
{
"filename": "node-14.13.1-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.1-294907768/node-14.13.1-win32-x64.7z"
}
]
},
{
"version": "14.13.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/14.13.0-279958998",
"files": [
{
"filename": "node-14.13.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.0-279958998/node-14.13.0-darwin-x64.tar.gz"
},
{
"filename": "node-14.13.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.0-279958998/node-14.13.0-linux-x64.tar.gz"
},
{
"filename": "node-14.13.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.0-279958998/node-14.13.0-win32-x64.7z"
}
]
},
{
"version": "14.12.0",
"stable": true,
@@ -399,6 +499,31 @@
}
]
},
{
"version": "12.19.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/12.19.0-292997882",
"files": [
{
"filename": "node-12.19.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/12.19.0-292997882/node-12.19.0-darwin-x64.tar.gz"
},
{
"filename": "node-12.19.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/12.19.0-292997882/node-12.19.0-linux-x64.tar.gz"
},
{
"filename": "node-12.19.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/12.19.0-292997882/node-12.19.0-win32-x64.7z"
}
]
},
{
"version": "12.18.4",
"stable": true,
@@ -1199,6 +1324,31 @@
}
]
},
{
"version": "10.23.0",
"stable": true,
"release_url": "https://github.com/actions/node-versions/releases/tag/10.23.0-333017621",
"files": [
{
"filename": "node-10.23.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/node-versions/releases/download/10.23.0-333017621/node-10.23.0-darwin-x64.tar.gz"
},
{
"filename": "node-10.23.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/node-versions/releases/download/10.23.0-333017621/node-10.23.0-linux-x64.tar.gz"
},
{
"filename": "node-10.23.0-win32-x64.7z",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/node-versions/releases/download/10.23.0-333017621/node-10.23.0-win32-x64.7z"
}
]
},
{
"version": "10.22.1",
"stable": true,