From 66884469ab8d1f23ca98d834381abc18e37dcb15 Mon Sep 17 00:00:00 2001 From: Ewan Lyon Date: Tue, 22 Dec 2020 20:29:33 +1100 Subject: [PATCH] Hopefully fix github action --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 36ff33f..729850c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,20 +29,20 @@ jobs: - uses: actions/setup-node@v1 # Runs a single command using the runners shell - name: Install dependencies - - run: npm install + run: npm install # Build the bundle - name: Build bundle - - run: npm run build --if-present + run: npm run build --if-present - name: Build Changelog - - id: github_release + id: github_release uses: mikepenz/release-changelog-builder-action@main env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create Release - - id: create_release + id: create_release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}