diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 7a92324..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Release -on: - release: - types: - - created - -jobs: - - publish_on_linux: - runs-on: ubuntu-latest - permissions: write-all - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@master - with: - node-version: 14 - - name: install dependencies - run: npm install - - name: publish - env: - GITHUB_TOKEN: ${{ secrets.LUV }} - run: npm run publish - - publish_on_mac: - runs-on: macos-latest - permissions: write-all - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@master - with: - node-version: 14 - - name: install dependencies - run: npm install - - name: publish - env: - GITHUB_TOKEN: ${{ secrets.LUV }} - run: npm run publish - - publish_on_win: - runs-on: windows-latest - permissions: write-all - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@master - with: - node-version: 14 - - name: install dependencies - run: npm install - - name: publish - env: - GITHUB_TOKEN: ${{ secrets.LUV }} - run: npm run publish diff --git a/.gitignore b/.gitignore index 5695e9f..a1b234f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules -out/ \ No newline at end of file +out/ +dist \ No newline at end of file diff --git a/package.json b/package.json index 9fa473a..a66a954 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,8 @@ { "name": "@electron-forge/maker-zip", "platforms": [ - "darwin" + "darwin", + "linux" ] }, {