From 71b478048873795de2a9f19e2c3c2aad151fdeda Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Thu, 7 Apr 2022 21:41:20 -0700 Subject: [PATCH 1/4] Create add-to-project (#373) --- .github/workflows/add-to-project | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/add-to-project diff --git a/.github/workflows/add-to-project b/.github/workflows/add-to-project new file mode 100644 index 0000000..bc6b94d --- /dev/null +++ b/.github/workflows/add-to-project @@ -0,0 +1,16 @@ +name: Add bugs to bugs project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.0.3 + with: + project-url: https://github.com/users/maxgoedjen/projects/1 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} From 26d6ced9eea10dc83defbc82093cd18a03f039be Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Thu, 7 Apr 2022 21:44:37 -0700 Subject: [PATCH 2/4] Rename add-to-project to add-to-project.yml (#375) --- .github/workflows/{add-to-project => add-to-project.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{add-to-project => add-to-project.yml} (100%) diff --git a/.github/workflows/add-to-project b/.github/workflows/add-to-project.yml similarity index 100% rename from .github/workflows/add-to-project rename to .github/workflows/add-to-project.yml From 8744313ba12148bcd7115f8648f706afa6bd3ade Mon Sep 17 00:00:00 2001 From: Paul Hammond Date: Fri, 22 Apr 2022 19:37:28 -0700 Subject: [PATCH 3/4] Add sha-256 checksums to auditable build output (#377) --- .github/workflows/nightly.yml | 4 ++++ .github/workflows/release.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 231e49d..9bf7a43 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -40,8 +40,12 @@ jobs: run: xcrun notarytool submit --key ~/.private_keys/AuthKey_$APPLE_API_KEY_ID.p8 --key-id $APPLE_API_KEY_ID --issuer $APPLE_API_ISSUER Secretive.zip - name: Document SHAs run: | + echo "sha-512:" shasum -a 512 Secretive.zip shasum -a 512 Archive.zip + echo "sha-256:" + shasum -a 256 Secretive.zip + shasum -a 256 Archive.zip - name: Upload App to Artifacts uses: actions/upload-artifact@v1 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1245d81..d6beba2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,8 +64,12 @@ jobs: run: xcrun notarytool submit --key ~/.private_keys/AuthKey_$APPLE_API_KEY_ID.p8 --key-id $APPLE_API_KEY_ID --issuer $APPLE_API_ISSUER Secretive.zip - name: Document SHAs run: | + echo "sha-512:" shasum -a 512 Secretive.zip shasum -a 512 Archive.zip + echo "sha-256:" + shasum -a 256 Secretive.zip + shasum -a 256 Archive.zip - name: Create Release id: create_release uses: actions/create-release@v1 From e77812c06c84ec1757afa5226b02da5182c6be2d Mon Sep 17 00:00:00 2001 From: TheBitStick Date: Wed, 4 May 2022 23:52:32 -0500 Subject: [PATCH 4/4] Added Mountain Duck Agent Configuration (#380) --- APP_CONFIG.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/APP_CONFIG.md b/APP_CONFIG.md index 2f0265d..ab21b7e 100644 --- a/APP_CONFIG.md +++ b/APP_CONFIG.md @@ -51,6 +51,31 @@ Add this to `~/Library/LaunchAgents/com.maxgoedjen.Secretive.SecretAgent.plist` Log out and log in again before launching Cyberduck. +## Mountain Duck + +Add this to `~/Library/LaunchAgents/com.maxgoedjen.Secretive.SecretAgent.plist` + +``` + + + + + Label + link-ssh-auth-sock + ProgramArguments + + /bin/sh + -c + /bin/ln -sf $HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh $SSH_AUTH_SOCK + + RunAtLoad + + + +``` + +Log out and log in again before launching Mountain Duck. + ## GitKraken Add this to `~/Library/LaunchAgents/com.maxgoedjen.Secretive.SecretAgent.plist`