diff --git a/.github/workflows/update-readme.yml b/.github/workflows/update-readme.yml deleted file mode 100644 index 2053a94f4e..0000000000 --- a/.github/workflows/update-readme.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Build and Release - -on: - workflow_dispatch: - -jobs: - update-readme: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - with: - token: ${{ secrets.RELEASE_TOKEN }} - - - name: Debugging - Show README content - run: cat ./packages/core/README.md - - - name: Update README.md - run: | - sed -i "s/releases\/download\/.*\/ic-reactor-core.min.js/releases\/download\/v1.1.2\/ic-reactor-core.min.js/" ./packages/core/README.md - - - name: Debugging - Show README content - run: cat ./packages/core/README.md - - - name: Add & Commit - uses: EndBug/add-and-commit@v9 - with: - add: "./packages/core/README.md" - default_author: github_actions - message: "Update README.md to point to the latest release(v1.1.2)"