From 48a39e9047631aa8fa41ff2a91456209d8c7b4c4 Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Tue, 06 Sep 2022 10:37:23 +0000 Subject: [PATCH] push generated files into repo --- --- a/.github/workflows/autogen-js-types.yml +++ b/.github/workflows/autogen-js-types.yml @@ -112,6 +112,15 @@ run: | ls -la + - name: Upload JS types to repo + working-directory: tests/unique-types-js + run: | + git config user.name github-actions + git config user.email github-actions@github.com + git add . + git commit -m "chore: regenerate types" + git push + - 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