Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ jobs:
run: echo "::set-output name=id::$(docker create ${{ env.IMAGE }})"
- name: Extract files from container
run: |
rm -rf targetdb
rm -rf targetdb msp430
docker cp ${{ steps.container.outputs.id }}:/opt/ti/ccs/ccs_base/common/targetdb .
docker cp ${{ steps.container.outputs.id }}:/opt/ti/ccs/ccs_base/msp430 tmp
mkdir -p msp430/include
cp tmp/include/lnk_*.cmd msp430/include
mkdir -p msp430
cp tmp/include/*.cmd msp430
rm -rf tmp
- name: Remove temporary container
run: docker rm ${{ steps.container.outputs.id }}

- name: Commit changes
run: |
git add targetdb
git add targetdb msp430
git commit -m "commit targetdb, version ${{ env.MAJOR_VER }}.${{ env.MINOR_VER }}.${{ env.PATCH_VER }}.${{ env.BUILD_VER }}"
git push origin ${{ github.head_ref }}
Loading