This commit is contained in:
qiaofeng1227 2023-07-20 11:19:56 +08:00
parent 886035424d
commit 39ced4bacd
3 changed files with 17 additions and 9 deletions

View file

@ -35,8 +35,6 @@ jobs:
echo $version echo $version
echo "::set-output name=version::$version" echo "::set-output name=version::$version"
echo "VERSION=$version" >> $GITHUB_ENV echo "VERSION=$version" >> $GITHUB_ENV
echo ${{ secrets.DOCKER_USERNAME2 }}
echo ${{ secrets.DOCKER_PASSWORD2 }}
- uses: mr-smithers-excellent/docker-build-push@v5 - uses: mr-smithers-excellent/docker-build-push@v5
name: Build & push Docker image name: Build & push Docker image
@ -47,8 +45,8 @@ jobs:
registry: docker.io registry: docker.io
dockerfile: appmanage/Dockerfile dockerfile: appmanage/Dockerfile
directory: appmanage directory: appmanage
username: ${{ secrets.DOCKER_USERNAME2 }} username: websoft9admin
password: ${{ secrets.DOCKER_PASSWORD2 }} password: Qiaofeng@1227
ci-test: ci-test:
needs: build-image needs: build-image
@ -68,6 +66,10 @@ jobs:
- name: Checkout source branch - name: Checkout source branch
run: git checkout ${{ steps.source_commit.outputs.commit }} run: git checkout ${{ steps.source_commit.outputs.commit }}
- name: Install
run: |
wget https://websoft9.github.io/websoft9/install/install.sh && bash install.sh online
- name: Test - name: Test
run: | run: |
cat README.md && cat version.json echo "Test"

View file

@ -6,13 +6,13 @@ on:
- main - main
jobs: jobs:
build: ci-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Test - name: Install
run: | run: |
cat README.md && cat version.json wget https://websoft9.github.io/websoft9/install/install.sh && bash install.sh online

View file

@ -43,7 +43,7 @@ Instead of reinventing the wheel, we integrate the best open source products int
- [Redis](https://redis.io/): The open source, in-memory data store - [Redis](https://redis.io/): The open source, in-memory data store
- [Appmanage](https://github.com/Websoft9/websoft9/tree/main/appmanage): API for manage docker compose based application powered by Wesoft9 - [Appmanage](https://github.com/Websoft9/websoft9/tree/main/appmanage): API for manage docker compose based application powered by Wesoft9
# Install # User Guide
## Installation ## Installation
@ -61,6 +61,12 @@ sudo su
curl https://websoft9.github.io/websoft9/install/update.sh | bash curl https://websoft9.github.io/websoft9/install/update.sh | bash
``` ```
## Getting Started
Using local Chrome or Firefox to visit the URL http://domain:9000 name or http://Internet IP:900, you will enter the websoft9
> Login using the username and password of the Linux operating system
# Contributing # Contributing
- websoft9 appmanage - websoft9 appmanage