Skip to content

Commit

Permalink
Merge pull request #9 from OpenIPC/next
Browse files Browse the repository at this point in the history
Merge Next into Master
  • Loading branch information
mikecarr authored Oct 5, 2024
2 parents 94f02e1 + d05a2c5 commit c61cbfb
Show file tree
Hide file tree
Showing 12 changed files with 562 additions and 195 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build and Release
on:
push:
tags:
- 'v*.*.*'
- 'v*.*.*' # Trigger on semantic versioning tags

jobs:
build:
Expand All @@ -22,7 +22,7 @@ jobs:

- name: Get version from tag
id: vars
run: echo "VERSION=${GITHUB_REF#refs/tags/} >> $GITHUB_ENV"
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

- name: Install dependencies
run: |
Expand All @@ -33,9 +33,18 @@ jobs:
run: |
python setup.py sdist bdist_wheel
- name: Create Release
id: create_release
run: |
TAG_NAME=${GITHUB_REF#refs/tags/}
echo "Creating release for tag $TAG_NAME"
echo "TAG_NAME=$TAG_NAME" >> $GITHUB_ENV
- name: Upload Package to Release
if: startsWith(github.ref, 'refs/tags/v') # Run this step if the tag starts with 'v'
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.TAG_NAME }}
files: |
dist/*
env:
Expand Down
17 changes: 13 additions & 4 deletions .vscode/sftp.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
{
"name": "Radxa Zero 3E",
"name": "Radxa",
"host": "10.0.1.14",
"protocol": "sftp",
"port": 22,
"username": "root",
"remotePath": "/root/workspace/py_config_gs",
"remotePath": "/root/workspace/improver",
"uploadOnSave": false,
"useTempFile": false,
"openSsh": false
}
"openSsh": false,
"ignore": [
"**/*.log",
"**/*.tmp",
".venv/**",
".git/**",
"**/*.env",
"**/.DS_Store"

]
}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,9 @@ sudo systemctl enable py-config-gs
```
pip uninstall py_config_gs-0.1-py3-none-any.whl
```

<br><br>
<hr>
<h3>This is an open project, so you can help, too.</h3>

We try to collect, organize and share as much information regarding different aspects of the project as we can. But sometimes we overlook things that seem obvious to us, developers, but are not so obvious to end-users, people who are less familiar with nuts and bolts behind the scene. That is why we set up this wiki and let anyone having a GitHub account to make additions and improvements to the knowledgebase. Read [How to contribute](https://github.com/OpenIPC/wiki/blob/master/en/contribute.md).
Loading

0 comments on commit c61cbfb

Please sign in to comment.