From 0a723093dc6064afdeb3c27d9761dd77082d063d Mon Sep 17 00:00:00 2001 From: Federico Grandi Date: Sat, 14 Dec 2019 23:36:50 +0100 Subject: [PATCH] Delete build-release.yml --- .github/workflows/build-release.yml | 44 ----------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/build-release.yml diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml deleted file mode 100644 index 93dfbc9..0000000 --- a/.github/workflows/build-release.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Build release -on: - push: - branches: - - dist - -jobs: - build: - name: Build compiled JS version - runs-on: windows-latest - steps: - - name: Checkout repository - uses: actions/checkout@master - - - name: Set up Node.js - uses: actions/setup-node@master - with: - node-version: 12.0.0 - - - name: Install dependencies - run: npm install - - - name: Commit dependencies - uses: EndBug/add-and-commit@v2.3.0 - with: - force: true - message: "[auto] Update dependencies" - path: node_modules - pattern: "*.*" - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Compile TypeScript into compressed JavaScript - run: npm run build - - - name: Commit changes - uses: EndBug/add-and-commit@v2.3.0 - with: - force: true - message: "[auto] Commit compiled files" - path: lib - pattern: "*.js" - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}