From 2f93af4faa4d4db635e0fe0abddea6ad0ed9fb9e Mon Sep 17 00:00:00 2001 From: Akos Kitta Date: Thu, 9 Jul 2020 09:17:15 +0200 Subject: [PATCH 1/2] Fixed the build-badge in the README. - Added the missing link to GH Actions. - Fixed a typo. Signed-off-by: Akos Kitta --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 382d19cd..67e005d3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Arduino Pro IDE -![Arduino Pro IDE](https://github.com/bcmi-labs/arduino-editor/workflows/Arduino%20Pro%20IDE/badge.svg) +[![Arduino Pro IDE](https://github.com/bcmi-labs/arduino-editor/workflows/Arduino%20Pro%20IDE/badge.svg)](https://github.com/bcmi-labs/arduino-editor/actions?query=workflow%3A%22Arduino+Pro+IDE%22) ### Download @@ -49,7 +49,7 @@ macOS | | [Nightly macOS 64 bit] | ### Build from source -If you’re familiar with TypeScript, the [Theia IDE](https://theia-ide.org/), and of you want to contribute to the +If you’re familiar with TypeScript, the [Theia IDE](https://theia-ide.org/), and if you want to contribute to the project, you should be able to build the Arduino Pro IDE locally. Please refer to the [Theia IDE prerequisites](https://github.com/theia-ide/theia/blob/master/doc/) documentation for the setup instructions. ### Build From 8e8a8ac9452291b3b360b2daaf6979e7d66b500b Mon Sep 17 00:00:00 2001 From: Akos Kitta Date: Thu, 9 Jul 2020 10:23:02 +0200 Subject: [PATCH 2/2] Fixed the expected tag prefix. Signed-off-by: Akos Kitta --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 93300fe6..eae7202b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,7 +55,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} IS_NIGHTLY: ${{ github.event_name == 'schedule' }} - IS_RELEASE: ${{ startsWith(github.ref, 'refs/tags/v') }} + IS_RELEASE: ${{ startsWith(github.ref, 'refs/tags/') }} run: | yarn --cwd ./electron/packager/ yarn --cwd ./electron/packager/ package @@ -88,7 +88,7 @@ jobs: release: needs: build - if: startsWith(github.ref, 'refs/tags/v') + if: startsWith(github.ref, 'refs/tags/') runs-on: ubuntu-latest steps: - name: Download [GitHub Actions]