From 5a858beabfd946a57ecc1a47af6345fff7a32fee Mon Sep 17 00:00:00 2001 From: Sean Boult <996134+Hacksore@users.noreply.github.com> Date: Wed, 22 Nov 2023 22:42:25 -0600 Subject: [PATCH] Add readme --- .github/tooling/setup/action.yaml | 25 ------------------------- .github/workflows/release.yaml | 1 + scripts/README.md | 5 +++++ 3 files changed, 6 insertions(+), 25 deletions(-) delete mode 100644 .github/tooling/setup/action.yaml create mode 100644 scripts/README.md diff --git a/.github/tooling/setup/action.yaml b/.github/tooling/setup/action.yaml deleted file mode 100644 index 5d0a6172..00000000 --- a/.github/tooling/setup/action.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: "Install" -description: "Sets up Node.js and runs install" -inputs: - target: - description: 'the rust toolchain' - required: true - default: 'aarch64-apple-darwin' -runs: - using: composite - steps: - - uses: actions/setup-node@v3 - with: - node-version: 18 - - uses: actions/checkout@v4 - - name: setup node - uses: actions/setup-node@v4 - with: - node-version: 20 - - name: install Rust stable - uses: dtolnay/rust-toolchain@stable - with: - targets: "${{ inputs.target }}" - - uses: pnpm/action-setup@v2 - with: - version: 8 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 476fdcf8..52254d04 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -115,6 +115,7 @@ jobs: sha1sum binaries/* - name: Sign Windows Binaries run: | + echo "Starting code sign for windows bins..." docker run -v "./binaries:/code/binaries" ghcr.io/sslcom/codesigner:latest batch_sign \ -username=${ES_USERNAME} \ -password=${ES_PASSWORD} \ diff --git a/scripts/README.md b/scripts/README.md new file mode 100644 index 00000000..924fbd17 --- /dev/null +++ b/scripts/README.md @@ -0,0 +1,5 @@ +# action scripts + +These are scripts that are ran in he the release.yaml. + +You can use `scripts/test.ts` as a test harness to test them locally.