Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lingmo-workspace-base #29

Merged
merged 9 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ jobs:
compression-level: 9 # maximum compression

- name: Prepare envs
if: ${{ matrix.devbuild == 'enabled' }}
if: ${{ !(github.event_name == 'pull_request') && matrix.devbuild == 'enabled' }}
run: |
sudo apt update && sudo apt install reprepro gnupg
echo "${{ secrets.GPG_SIGN_KEY }}" >> key.key
gpg --import key.key

- name: Clone & Update repo
if: ${{ matrix.devbuild == 'enabled' }}
if: ${{ !(github.event_name == 'pull_request') && matrix.devbuild == 'enabled' }}
run: |
git clone https://github.com/LingmoOS/lingmo-nightly-build.git pkg_site
DEB_FILE_DIR="$(pwd)/BuildArtifacts"
Expand All @@ -84,13 +84,13 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "Lingmo Automation Packer"
git add . && git commit -m "Update Packages By Actions"
git branch -D master
git branch -m master
git branch -D main
git branch -m main

cd ..

- name: Push changes
if: ${{ matrix.devbuild == 'enabled' }}
if: ${{ !(github.event_name == 'pull_request') && matrix.devbuild == 'enabled' }}
uses: ad-m/github-push-action@9870d48124da805820c70ebc6ba563c715551019
with:
github_token: ${{ secrets.API_GITHUB_TOKEN }}
Expand Down
6 changes: 6 additions & 0 deletions Configs/lingmo-workspace-base.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"Name": "lingmo-workspace-base",
"Repository": "https://github.com/LingmoOS/lingmo-workspace-base.git",
"BuildType": "Debian",
"Tag": "2.0.1-0"
}
Loading