Skip to content

Add Tizen 8.0 bindings #41

Add Tizen 8.0 bindings

Add Tizen 8.0 bindings #41

Workflow file for this run

name: Release
on:
pull_request:
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'flutter-tizen' }}
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: stable
- name: Install credentials
run: |
mkdir -p $HOME/.config/dart
echo '${{ secrets.PUB_CREDENTIALS }}' > $HOME/.config/dart/pub-credentials.json
flutter pub get
- name: Dry run on pull request
if: ${{ github.event_name == 'pull_request' }}
run: flutter pub publish --dry-run
- name: Try publish
if: ${{ github.event_name == 'workflow_dispatch' }}
timeout-minutes: 2
run: flutter pub publish -f || true