-
-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* automate release generation * make shell scripts +x * add yaml * rely on gh line ending conventions, simplify buildfiles.lst * add gitattributes * set file properties for run scripts to +x Co-authored-by: Philip Puetsch <[email protected]>
- Loading branch information
Showing
13 changed files
with
34 additions
and
34 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
* text=auto eol=lf | ||
*.{sh,[sS][hH]} text eol=lf | ||
*.{pyb} text eol=lf | ||
*.{cmd,[cC][mM][dD]} text eol=crlf | ||
*.{bat,[bB][aA][tT]} text eol=crlf |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: build release archive | ||
run: | | ||
find . -type f -name "*.sh" -exec chmod +x {} \; | ||
tar -czvf venus-data.tar.gz \ | ||
--mode='a+rwX' \ | ||
--exclude battery_template.py \ | ||
--exclude __pycache__ \ | ||
--exclude restartservice.sh \ | ||
--exclude revov.py \ | ||
--exclude test_max17853.py \ | ||
conf/serial-starter.d \ | ||
etc/dbus-serialbattery/ | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: venus-data.tar.gz |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.