Skip to content

Commit

Permalink
ci: Changes to our CI configuration files and scripts (example scopes…
Browse files Browse the repository at this point in the history
…: Travis, Circle, GitHub Actions): "Improve test accuracy and workflow optimizations"

- Removed unnecessary quotation marks from the secrets in the release workflow.

Signed-off-by: Kai-Chu Chung <cage.chung@gmail.com>
  • Loading branch information
cage1016 committed Aug 3, 2023
1 parent 0ea103e commit 9e311e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
uses: Apple-Actions/import-codesign-certs@v1
with:
# The certificates in a PKCS12 file encoded as a base64 string
p12-file-base64: "${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }}"
p12-file-base64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }}
# The password used to import the PKCS12 file.
p12-password: "${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }}"
p12-password: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }}
- name: Install gon via HomeBrew for code signing and app notarization
run: |
brew tap mitchellh/gon
Expand All @@ -44,8 +44,8 @@ jobs:
rm exe_arm64
- name: code sign and notarize
env:
AC_USERNAME: "${{ secrets.AC_USERNAME }}"
AC_PASSWORD: "${{ secrets.AC_PASSWORD }}"
AC_USERNAME: ${{ secrets.AC_USERNAME }}
AC_PASSWORD: ${{ secrets.AC_PASSWORD }}
run: |
# gon code sign
cat <<EOF >> gon.json
Expand Down

0 comments on commit 9e311e9

Please sign in to comment.