From 922312aaafe28e900bfb2404e4972afbc47c86c8 Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Tue, 06 Sep 2022 11:17:36 +0000 Subject: [PATCH] add push action --- --- a/.github/workflows/autogen-js-types.yml +++ b/.github/workflows/autogen-js-types.yml @@ -119,8 +119,14 @@ git config user.email github-actions@github.com git add . git commit -m "chore: regenerate types" - git push + - name: Push changes + working-directory: tests/unique-types-js + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ github.ref }} + - name: Stop running containers if: always() # run this step always run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down -- gitstuff