Create environments #4

Merged
TopchetoEU merged 14 commits from TopchetoEU/environments into master 2023-09-09 15:55:49 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 0343c97d5e - Show all commits

View File

@ -18,7 +18,7 @@ jobs:
repository: 'java-jscript'
- name: "Build"
run: |
cd java-jscript; node ./build.js
cd java-jscript; node ./build.js ${{ github.ref }}
- uses: "marvinpinto/action-automatic-releases@latest"
with:

View File

@ -3,6 +3,7 @@ const fs = require('fs/promises');
const pt = require('path');
const conf = require('./meta');
const { argv } = require('process');
conf.version = argv[2];
async function* find(src, dst, wildcard) {
const stat = await fs.stat(src);