module update to commit e5de92a #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Lawnchair module | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Remove .github and .git folders | |
run: | | |
find . -type d -name .github -exec rm -rf {} + | |
rm -rf .git | |
- name: Upload files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Lawnchairmodule | |
path: ./ | |
if-no-files-found: error |