Skip to content

remove manifest gen

remove manifest gen #9

name: Package autoscripts
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
tar_directories:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Tgz directories
run: |
for dir in ./src/*; do
echo $dir
if [ -d "$dir" ]; then
pkgname=$(basename $dir)
tar -czvf ./packages/${pkgname}.tgz $dir
fi
done
- name: Commit autoscripts packages
uses: EndBug/add-and-commit@v9
with:

Check failure on line 27 in .github/workflows/github_actions.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/github_actions.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
add: './packages/*.tgz' 'manifest'
author_name: Eggheads Autoscripts
author_email: [email protected]
default_author: user_info
message: Update autoscripts
push: true