diff options
| author | vulcandth <vulcandth@gmail.com> | 2023-08-26 10:11:05 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-26 10:11:05 -0500 |
| commit | 7bc3fd051e7a55ef8c66fc9122abf5ec03d67d21 (patch) | |
| tree | 049bd658c480a609f8838b7039a321d3430ac300 | |
| parent | Missing usage of def_script_pointers (#423) (diff) | |
| download | pokeyellow-7bc3fd051e7a55ef8c66fc9122abf5ec03d67d21.tar.gz pokeyellow-7bc3fd051e7a55ef8c66fc9122abf5ec03d67d21.tar.xz pokeyellow-7bc3fd051e7a55ef8c66fc9122abf5ec03d67d21.zip | |
CI copy `.map` files to symbols branch (#428)
| -rw-r--r-- | .github/workflows/main.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 44317b8b..2f26a4d3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,11 +66,12 @@ jobs: if: ${{ github.event_name == 'push' && github.repository_owner == 'pret' }} run: | cp -v *.sym symbols/ + cp -v *.map symbols/ - name: Update symbols if: ${{ github.event_name == 'push' && github.repository_owner == 'pret' }} uses: EndBug/add-and-commit@v9 with: cwd: "./symbols" - add: "*.sym" + add: "*.sym *.map" message: ${{ github.event.commits[0].message }} |
