Skip to content

Commit

Permalink
Create module.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Unofficial-Life authored Jun 24, 2024
1 parent c7666bd commit f65350e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/module.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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

0 comments on commit f65350e

Please sign in to comment.