From ebf898b5107f7880d8edf4bd44f46876494a2e68 Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Sun, 19 Jan 2025 22:53:54 -0500 Subject: [PATCH] ci: add CI to publish to gcr --- .github/workflows/gcr-publish.yml | 37 +++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/gcr-publish.yml diff --git a/.github/workflows/gcr-publish.yml b/.github/workflows/gcr-publish.yml new file mode 100644 index 0000000..0e8c60f --- /dev/null +++ b/.github/workflows/gcr-publish.yml @@ -0,0 +1,37 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +name: Node.js Package + +on: + push: + branches: [dev] + release: + types: [created] + +jobs: + publish-gpr: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + id-token: write + attestations: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: https://npm.pkg.github.com/ + - uses: oven-sh/setup-bun@v2 + - run: bun install + - run: bun run build + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} + # - name: Generate artifact attestation + # uses: actions/attest-build-provenance@v2 + # with: + # subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + # subject-digest: 'sha256:fedcba0...' + # push-to-registry: true \ No newline at end of file