mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 23:50:31 +00:00
23 lines
438 B
YAML
23 lines
438 B
YAML
name: Create APPS from template
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
paths:
|
|
- 'apps/add'
|
|
jobs:
|
|
build:
|
|
name: Create apps
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
TAGS: latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Creating
|
|
run: |
|
|
cd apps && python3 create.py
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: new vendor
|