Merge pull request #19 from AppsFlyerSDK/releases/2.x.x/2.0.x/2.0.4-rc1 #9
Workflow file for this run
This file contains 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
name: check packages | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
- name: Name of the branch | |
run: | | |
echo "PLUGIN_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7.8' | |
- name: install python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install unitypackage_extractor | |
- name: execute py script | |
run: | |
python .github/workflows/Scripts/extractPackage.py appsflyer-unity-plugin-${{env.PLUGIN_VERSION}}.unitypackage | |