Initial commit
This commit is contained in:
commit
a437c068c8
64 changed files with 561683 additions and 0 deletions
0
.github/agents/ChatGPT.agent.md
vendored
Normal file
0
.github/agents/ChatGPT.agent.md
vendored
Normal file
32
.github/workflows/build-release.yml
vendored
Normal file
32
.github/workflows/build-release.yml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
name: Pack Drupal module
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
workflow_dispatch: {}
|
||||
|
||||
jobs:
|
||||
pack:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: '24'
|
||||
|
||||
- name: Pack module zip
|
||||
run: node scripts/pack-drupal-module.js
|
||||
|
||||
- name: Create release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
tag_name: ${{ github.ref_name }}
|
||||
name: Release ${{ github.ref_name }}
|
||||
files: ./dfg_3dviewer-drupal.zip
|
||||
Loading…
Add table
Add a link
Reference in a new issue