Delete .github/workflows/Build-Development.yml

This commit is contained in:
Julian Lechner
2025-07-14 09:48:02 +02:00
committed by GitHub
parent b73a0d0a0a
commit ae1a3c59d9
-40
View File
@@ -1,40 +0,0 @@
name: Build Development
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout Repository
uses: actions/checkout@v4
- name: use NodeJS v22.16.0
uses: actions/setup-node@v4
with:
node-version: '22.16.0'
- name: Install Dependencies
run: npm install
- name: run Build Development
run: npm run buildDevelopment
- name: get Version from package.json
id: get_version
run: |
version=$(node -p "require('./package.json').version")
echo "VERSION=$version" >> $GITHUB_ENV
- name: rename dist-Folder
run: mv dist "${{ env.VERSION }}"
- name: compress Version-Folder
run: zip -r "${{ env.VERSION }}-DEV.zip" "${{ env.VERSION }}"
- name: Upload Build-Artefact
uses: actions/upload-artifact@v4
with:
name: ${{ env.VERSION }}
path: ${{ env.VERSION }}