Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/check-general-formatting-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
check:
needs: run-determination
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Set environment variables
run: |
# See: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable
echo "EC_INSTALL_PATH=${{ runner.temp }}/editorconfig-checker" >> "$GITHUB_ENV"
echo "EC_INSTALL_PATH=${{ runner.temp }}/editorconfig-checker" >>"$GITHUB_ENV"
- name: Checkout repository
uses: actions/checkout@v5
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
"${{ env.EC_INSTALL_PATH }}/bin/ec"
# Add installation to PATH:
# See: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path
echo "${{ env.EC_INSTALL_PATH }}/bin" >> "$GITHUB_PATH"
echo "${{ env.EC_INSTALL_PATH }}/bin" >>"$GITHUB_PATH"
- name: Check formatting
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-go-dependencies-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
check-cache:
needs: run-determination
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
check-errors:
name: check-errors (${{ matrix.module.path }})
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
check-license:
name: ${{ matrix.check-license.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-markdown-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
lint:
needs: run-determination
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-npm-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
validate:
name: validate (${{ matrix.project.path }})
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-poetry-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
validate:
needs: run-determination
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-prettier-formatting-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
check:
needs: run-determination
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-taskfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
validate:
name: Validate ${{ matrix.file }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-yaml-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
check:
name: ${{ matrix.configuration.name }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-go-crosscompile-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ jobs:
- name: Set environment variables
run: |
# See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#setting-an-environment-variable
echo "BUILD_FOLDER=${{ env.PROJECT_NAME }}_osx_${{ matrix.build.folder-suffix }}" >> "$GITHUB_ENV"
echo "BUILD_FOLDER=${{ env.PROJECT_NAME }}_osx_${{ matrix.build.folder-suffix }}" >>"$GITHUB_ENV"
TAG="${GITHUB_REF/refs\/tags\//}"
echo "PACKAGE_FILENAME=${{ env.PROJECT_NAME }}_${TAG}_${{ matrix.build.package-suffix }}" >> $GITHUB_ENV
echo "PACKAGE_FILENAME=${{ env.PROJECT_NAME }}_${TAG}_${{ matrix.build.package-suffix }}" >>$GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v5
Expand All @@ -124,7 +124,7 @@ jobs:
# Arbitrary password for a keychain that exists only for the duration of the job, so not secret
KEYCHAIN_PASSWORD: keychainpassword
run: |
echo "${{ secrets.INSTALLER_CERT_MAC_P12 }}" | base64 --decode > "${{ env.INSTALLER_CERT_MAC_PATH }}"
echo "${{ secrets.INSTALLER_CERT_MAC_P12 }}" | base64 --decode >"${{ env.INSTALLER_CERT_MAC_PATH }}"
security create-keychain -p "${{ env.KEYCHAIN_PASSWORD }}" "${{ env.KEYCHAIN }}"
security default-keychain -s "${{ env.KEYCHAIN }}"
security unlock-keychain -p "${{ env.KEYCHAIN_PASSWORD }}" "${{ env.KEYCHAIN }}"
Expand All @@ -149,7 +149,7 @@ jobs:
- name: Write gon config to file
# gon does not allow env variables in config file (https://github.com/mitchellh/gon/issues/20)
run: |
cat > "${{ env.GON_CONFIG_PATH }}" <<EOF
cat >"${{ env.GON_CONFIG_PATH }}" <<EOF
# See: https://github.com/Bearer/gon#configuration-file
source = ["${{ env.DIST_DIR }}/${{ env.BUILD_FOLDER }}/${{ env.PROJECT_NAME }}"]
bundle_id = "cc.arduino.${{ env.PROJECT_NAME }}"
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
working-directory: ${{ env.DIST_DIR }}
run: |
TAG="${GITHUB_REF/refs\/tags\//}"
sha256sum ${{ env.PROJECT_NAME }}_${TAG}* > ${TAG}-checksums.txt
sha256sum ${{ env.PROJECT_NAME }}_${TAG}* >${TAG}-checksums.txt
- name: Identify Prerelease
# This is a workaround while waiting for create-release action
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spell-check-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
RESULT="false"
fi
echo "result=$RESULT" >> $GITHUB_OUTPUT
echo "result=$RESULT" >>$GITHUB_OUTPUT
spellcheck:
needs: run-determination
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync-labels-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Set environment variables
run: |
# See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#setting-an-environment-variable
echo "MERGED_CONFIGURATION_PATH=${{ runner.temp }}/labels.yml" >> "$GITHUB_ENV"
echo "MERGED_CONFIGURATION_PATH=${{ runner.temp }}/labels.yml" >>"$GITHUB_ENV"
- name: Determine whether to dry run
id: dry-run
Expand All @@ -117,7 +117,7 @@ jobs:
run: |
# Use of this flag in the github-label-sync command will cause it to only check the validity of the
# configuration.
echo "flag=--dry-run" >> $GITHUB_OUTPUT
echo "flag=--dry-run" >>$GITHUB_OUTPUT
- name: Checkout repository
uses: actions/checkout@v5
Expand All @@ -143,7 +143,7 @@ jobs:
run: |
# Merge all configuration files
shopt -s extglob
cat "${{ env.CONFIGURATIONS_FOLDER }}"/*.@(yml|yaml) > "${{ env.MERGED_CONFIGURATION_PATH }}"
cat "${{ env.CONFIGURATIONS_FOLDER }}"/*.@(yml|yaml) >"${{ env.MERGED_CONFIGURATION_PATH }}"
- name: Install github-label-sync
run: npm install
Expand Down
Loading