mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-21 23:20:23 +00:00
os_support
This commit is contained in:
parent
f64a9bd7d5
commit
6169c68f98
2 changed files with 23 additions and 3 deletions
18
.github/workflows/upload_artifact.yml
vendored
18
.github/workflows/upload_artifact.yml
vendored
|
@ -21,6 +21,8 @@ jobs:
|
|||
version=$(jq -r '.VERSION' version.json)
|
||||
echo version=$version
|
||||
echo "VERSION=$version" >> $GITHUB_ENV
|
||||
changelog=$(cat changelog_latest.md)
|
||||
echo "CHANGELOG=$changelog" >> $GITHUB_ENV
|
||||
mkdir websoft9 artifacts
|
||||
cp -r docker websoft9
|
||||
cp -r cockpit websoft9
|
||||
|
@ -41,3 +43,19 @@ jobs:
|
|||
destination_folder: ./websoft9
|
||||
delete_if_exists: true
|
||||
fail_if_source_empty: true
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: appstore/*
|
||||
tag_name: ${{ env.PLUGIN_VERSION }}
|
||||
title: Release-${{ env.PLUGIN_VERSION }}
|
||||
body: ${{ env.CHANGELOG }}
|
||||
draft: false
|
||||
prerelease: true
|
||||
|
||||
- name: Commit and push changes
|
||||
uses: stefanzweifel/git-auto-commit-action@v4
|
||||
with:
|
||||
commit_message: Push to github main
|
||||
|
|
|
@ -16,7 +16,9 @@
|
|||
"OS_SUPPORT": {
|
||||
"CentOS": [
|
||||
"7",
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"CentOS Stream": [
|
||||
"9"
|
||||
],
|
||||
"Ubuntu": [
|
||||
|
@ -30,5 +32,5 @@
|
|||
"9"
|
||||
]
|
||||
},
|
||||
"VERSION": "0.8.2"
|
||||
}
|
||||
"VERSION": "0.8.3"
|
||||
}
|
Loading…
Reference in a new issue