cmake.yml 398 B

1234567891011121314151617181920
  1. # This is a basic workflow to help you get started with Actions
  2. name: Test-workflow
  3. on:
  4. push:
  5. branches: [ master ]
  6. pull_request:
  7. branches: [ master ]
  8. jobs:
  9. build:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - name: Set Target
  13. run: echo "TARGET_BUILD_NAME=SqueezeAmp" >> $GITHUB_ENV
  14. - name: Get Target
  15. run: |
  16. echo "Target is ${TARGET_BUILD_NAME}"
  17. env