Skip to content

Instantly share code, notes, and snippets.

@sjchmiela
Created July 28, 2025 16:44
Show Gist options
  • Save sjchmiela/2e76bce4d3ede7405b6d36d3f6e2d813 to your computer and use it in GitHub Desktop.
Save sjchmiela/2e76bce4d3ede7405b6d36d3f6e2d813 to your computer and use it in GitHub Desktop.
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