Skip to content

Step 2, Generate the project from BaseVM #397

Step 2, Generate the project from BaseVM

Step 2, Generate the project from BaseVM #397

Workflow file for this run

name: "Generate the project from BaseVM"
on:
schedule:
- cron: '10 1 * * *'
workflow_dispatch:
push:
branches:
- 'main'
paths:
- 'conf/*'
- '.github/data/*'
- '.github/workflows/generate.yml'
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.VM_TOKEN }}
- name: Get latest release
id: get-latest-release
uses: InsonusK/get-latest-release@v1.0.1
with:
myToken: ${{ github.token }}
view_top: 1
- name: Using main branch
run: |
git switch main || (git fetch --all && git checkout -b main origin/main)
. conf/default.release.conf
echo "DEFAULT_RELEASE=$DEFAULT_RELEASE" >> $GITHUB_ENV
echo "ALL_RELEASES=\"$(ls conf/ | grep -v default | sed 's/.conf//g' | tr '\n' ',' | sed "s/,\$//" | sed 's/,/", "/g')\"" >> $GITHUB_ENV
git clone https://github.com/vmactions/base-vm.git
mkdir -p .github/tpl
cat base-vm/.github/tpl/README.tpl.md >.github/tpl/README.tpl.md
- name: Generate files
uses: vmactions/render@v0.0.1
env:
LATEST_TAG: ${{ steps.get-latest-release.outputs.tag_name }}
with:
datafile: .github/data/datafile.ini
files: |
base-vm/.github/tpl/test.tpl.yml : .github/workflows/test.yml
base-vm/.github/tpl/manual.tpl.yml : .github/workflows/manual.yml
base-vm/.github/FUNDING.yml : .github/FUNDING.yml
base-vm/.github/workflows/readme.yml : .github/workflows/readme.yml
base-vm/.github/workflows/major.yml : .github/workflows/major.yml
base-vm/package.json : package.json
base-vm/index.js : index.js
base-vm/action.yml : action.yml
base-vm/run.sh : run.sh
- name: Update node_modules
run: |
[ -e "node_modules" ] && git rm -r node_modules
npm install --save
git add node_modules
- uses: EndBug/add-and-commit@v9
with:
message: "Generated from https://github.com/vmactions/base-vm"
pull: '--rebase --autostash '
add: |
.github/workflows/readme.yml
.github/workflows/major.yml
.github/workflows/manual.yml
.github/workflows/test.yml
.github/tpl/README.tpl.md
.github/FUNDING.yml
package.json
package-lock.json
index.js
action.yml
run.sh
node_modules