Skip to content

Fix Disconnect/re-connect from notification when both VPN and AppTP a… #46

Fix Disconnect/re-connect from notification when both VPN and AppTP a…

Fix Disconnect/re-connect from notification when both VPN and AppTP a… #46

name: Android App Production Release
on:
workflow_dispatch:
inputs:
app-version:
description: 'App Version for Release'
required: true
default: 'PLACEHOLDER'
env:
ASANA_PAT: ${{ secrets.GH_ASANA_SECRET }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
create_release_task:
uses: ./.github/workflows/release/release_create_task.yml

Check failure on line 20 in .github/workflows/release_production.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release_production.yml

Invalid workflow file

invalid value workflow reference: workflows must be defined at the top level of the .github/workflows/ directory
with:
app-version: ${{ github.event.inputs.app-version }}
create_release_tag:
needs: create_release_task
uses: ./.github/workflows/release/release_create_tag.yml
with:
app-version: ${{ github.event.inputs.app-version }}
launch_release_tests:
needs: create_release_tag
uses: ./.github/workflows/release/release_tests.yml
with:
app-version: ${{ github.event.inputs.app-version }}
report_workflow_failed:
if: ${{ failure() }}
uses: ./.github/workflows/release/release_report_error.yml