Merge pull request #2 from SharezoneApp/sync-flutter-markdown #1
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: release | |
on: | |
push: | |
branches: | |
- main | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
release: | |
if: github.repository_owner == 'flutter' | |
name: release | |
permissions: | |
# Release needs to push a tag back to the repo. | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Install Flutter" | |
# Github Actions don't support templates so it is hard to share this snippet with another action | |
# If we eventually need to use this in more workflow, we could create a shell script that contains this | |
# snippet. | |
run: | | |
cd $HOME | |
git clone https://github.com/flutter/flutter.git --depth 1 -b stable _flutter | |
echo "$HOME/_flutter/bin" >> $GITHUB_PATH | |
cd $GITHUB_WORKSPACE | |
# Checks out a copy of the repo. | |
- name: Check out code | |
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 | |
with: | |
fetch-depth: 0 # Fetch all history so the tool can get all the tags to determine version. | |
- name: Set up tools | |
run: dart pub global activate flutter_plugin_tools 0.8.1 | |
# # This workflow should be the last to run. So wait for all the other tests to succeed. | |
- name: Wait on all tests | |
uses: lewagon/wait-on-check-action@752bfae19aef55dab12a00bc36d48acc46b77e9d | |
with: | |
ref: ${{ github.sha }} | |
running-workflow-name: 'release' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
wait-interval: 180 # seconds | |
allowed-conclusions: success,neutral | |
- name: run release | |
run: | | |
git config --global user.name ${{ secrets.USER_NAME }} | |
git config --global user.email ${{ secrets.USER_EMAIL }} | |
dart pub global run flutter_plugin_tools publish-plugin --all-changed --base-sha=HEAD~ --skip-confirmation --remote=origin | |
env: {PUB_CREDENTIALS: "${{ secrets.PUB_CREDENTIALS }}"} | |