diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 27afae1..d4c8b67 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,8 +2,6 @@ name: Main on: push: - # tags: - # - 'v*.*.*' branches: - main @@ -16,18 +14,9 @@ jobs: - uses: actions/setup-node@v2 with: node-version: '14' - - run: yarn install --frozen-lockfile + - name: Install dependencies + run: yarn install --frozen-lockfile - name: Build run: yarn run dist env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: ls out - # - name: Create release - # uses: softprops/action-gh-release@v0.1.5 - # with: - # files: | - # *.dmg - # *.deb - # *.AppImage - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file