diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml new file mode 100644 index 0000000..96caa73 --- /dev/null +++ b/.github/workflows/docker-build.yml @@ -0,0 +1,34 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ${{matrix.os}} + strategy: + matrix: + os: + - "macOS-latest" + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '14' + - run: npm install yarn -g + - run: yarn install + - run: npm run make + - name: Upload file + uses: actions/upload-artifact@v2 + with: + name: packs + path: | + out/make/* + out/make/zip/darwin/x64/* + out/make/rpm/x64/* + out/make/deb/x64/* + out/make/squirrel.windows/x64/* diff --git a/package.json b/package.json index dfb86de..13b3fd4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "dolphin", "productName": "Dolphin", - "version": "0.1.1", + "version": "0.1.2", "description": "An electron ssh dynamic port forward client for MacOS", "repository": { "url": "https://github.com/miaowing/dolphin"