Created
July 28, 2025 16:44
-
-
Save sjchmiela/2e76bce4d3ede7405b6d36d3f6e2d813 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| tags: | |
| - '*.*.*' # 1.2.3 (but also abc.def.ghi) | |
| jobs: | |
| echo_test: | |
| env: | |
| APP_VERSION: ${{ github.ref_name }} | |
| steps: | |
| - run: echo $APP_VERSION # this shows APP_VERSION is available | |
| build_ios: | |
| type: build | |
| env: | |
| APP_VERSION: ${{ github.ref_name }} # this does not work automatically, you need to read it in app.config.ts from process.env | |
| params: | |
| platform: ios | |
| profile: simulator |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment