Skip to content

nthState/UploadTestFlightReleaseNotes

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Upload TestFlight Release Notes

About

This GitHub Action allows you to upload Release Notes to a particular build on TestFlight

Requires: python3

Example

name: Example Workflow

on: [push]

jobs:
  example_job:
    runs-on: macos-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4
      
      - name: Upload Release Notes to TestFlight
        uses: nthState/UploadTestFlightReleaseNotes@v2.0.0
        with:
          ISSUER_ID: ${{ secrets.APPCONNECT_API_ISSUER }}
          KEY_ID: ${{ secrets.APPCONNECT_API_KEY_ID }}
          PRIVATE_KEY: ${{ secrets.APPCONNECT_API_KEY_PRIVATE }}
          APP_ID: id of the app
          WHATS_NEW: "detail item that has changed"
          BUILD_NUMBER: the build number you want to change

Testing

export ISSUER_ID=appstore connect api issuer id
export KEY_ID=appstore connect api key id
export PRIVATE_KEY=appstore connect api private key
export APP_ID=app id
export WHATS_NEW="Your update text, max 4000 chars"
export BUILD_NUMBER= your build number
python3 ./main.py

Build

Generating the requirements.txt

Create a virtual env

cd /tmp
mkdir api_venv 
cd api_venv/                                             
python3.10 -m venv venv
cd venv/bin
source activate

Then install the libraries

pip3 install cryptography                                
pip3 install requests
pip3 install pyjwt

Export the requirements

pip3 freeze > requirements.txt 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Languages