From efd716c1957fd2b3a52850d5fae1a71ea995bf3e Mon Sep 17 00:00:00 2001 From: lucrandosantos5-creator <233677700+lucrandosantos5-creator@users.noreply.github.com> Date: Mon, 22 Sep 2025 08:55:52 +0100 Subject: [PATCH 1/2] Create Ifesinachi Congratulations --- Ifesinachi | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Ifesinachi diff --git a/Ifesinachi b/Ifesinachi new file mode 100644 index 00000000000..66122cd7e21 --- /dev/null +++ b/Ifesinachi @@ -0,0 +1,36 @@ +# 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: Ifesinachi + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm test + + publish-gpr: + needs: build + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: https://npm.pkg.github.com/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} From 2f5a49548c4da5a1ce2082123b9a48f407e9a595 Mon Sep 17 00:00:00 2001 From: lucrandosantos5-creator <233677700+lucrandosantos5-creator@users.noreply.github.com> Date: Mon, 22 Sep 2025 08:56:45 +0100 Subject: [PATCH 2/2] Revert "Create Ifesinachi" --- Ifesinachi | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 Ifesinachi diff --git a/Ifesinachi b/Ifesinachi deleted file mode 100644 index 66122cd7e21..00000000000 --- a/Ifesinachi +++ /dev/null @@ -1,36 +0,0 @@ -# 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: Ifesinachi - -on: - release: - types: [created] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 20 - - run: npm ci - - run: npm test - - publish-gpr: - needs: build - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 20 - registry-url: https://npm.pkg.github.com/ - - run: npm ci - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}