Check latest flutter tag #285
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 latest flutter tag | |
on: | |
schedule: | |
- cron: "30 4 * * *" | |
workflow_dispatch: | |
jobs: | |
# Determine the version number of the latest stable flutter release. | |
check_tags: | |
runs-on: ubuntu-latest | |
outputs: | |
latestFlutterTag: ${{steps.latest-tags.outputs.FLUTTER}} | |
latestImageTag: ${{steps.latest-tags.outputs.IMAGE}} | |
steps: | |
- name: Check latest tags | |
id: latest-tags | |
run: | | |
LAST_FLUTTER_TAG=$(curl -s https://api.github.com/repos/flutter/flutter/git/refs/tags | jq 'map(.ref) | map(sub("refs/tags/"; "")) | .[] | select(. | contains("pre") | not)' | tail -n 1 | tr -d '"') | |
LAST_IMAGE_TAG=$(curl -s https://api.github.com/repos/tauu/docker-flutter-web-driver/git/refs/tags | jq 'map(.ref) | map(sub("refs/tags/"; "")) | .[] | select(. | contains("pre") | not)' | tail -n 1 | tr -d '"') | |
echo "FLUTTER=$LAST_FLUTTER_TAG" >> $GITHUB_OUTPUT | |
echo "IMAGE=$LAST_IMAGE_TAG" >> $GITHUB_OUTPUT | |
- name: Create Tag | |
uses: actions/github-script@v6 | |
if: ${{steps.latest-tags.outputs.FLUTTER != steps.latest-tags.outputs.IMAGE}} | |
with: | |
script: | | |
github.rest.git.createRef({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
ref: `refs/tags/${{steps.latest-tags.outputs.FLUTTER}}`, | |
sha: context.sha | |
}) | |
# Build a docker image with this version, if it has not been build before. | |
call_docker_image: | |
uses: ./.github/workflows/docker-image.yml | |
needs: check_tags | |
if: ${{needs.check_tags.outputs.latestFlutterTag != needs.check_tags.outputs.latestImageTag}} | |
secrets: inherit | |
with: | |
version: ${{needs.check_tags.outputs.latestFlutterTag}} | |
latest: true | |
# Use the keepalive action to ensure the cron jobs will not be suspended after | |
# 90 days of inactivity. | |
keepalive: | |
name: Keepalive Commit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: gautamkrishnar/keepalive-workflow@v1 |