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.