diff --git a/.github/workflows/build-publish-to-mac-store-on-release.yml b/.github/workflows/build-publish-to-mac-store-on-release.yml index 1533643c06..2715af2301 100644 --- a/.github/workflows/build-publish-to-mac-store-on-release.yml +++ b/.github/workflows/build-publish-to-mac-store-on-release.yml @@ -50,13 +50,13 @@ jobs: run: yarn dist:mac:mas:buildOnly - name: Validate App - run: xcrun altool --validate-app -f app-builds/mas/superProductivity-*.pkg -u $APPLEID -p APPLEIDPASS + run: xcrun altool --validate-app -f app-builds/mas/superProductivity-*.pkg -u ${{secrets.APPLEID}} -p ${{secrets.APPLEIDPASS}} env: APPLEID: ${{secrets.APPLEID}} APPLEIDPASS: ${{secrets.APPLEIDPASS}} - name: Push to Store - run: xcrun altool --upload-app -f app-builds/mas/superProductivity-*.pkg -u $APPLEID -p APPLEIDPASS + run: xcrun altool --upload-app -f app-builds/mas/superProductivity-*.pkg -u ${{secrets.APPLEID}} -p ${{secrets.APPLEIDPASS}} env: APPLEID: ${{secrets.APPLEID}} APPLEIDPASS: ${{secrets.APPLEIDPASS}}