Update #72
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: Update | |
on: | |
# Runs at 10:00 UTC every day | |
schedule: | |
- cron: "0 10 * * *" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
sync: | |
name: Sync version with upstream | |
environment: "Candidate Branch" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sync version with upstream | |
uses: snapcrafters/ci/sync-version@main | |
with: | |
token: ${{ secrets.SNAPCRAFTERS_BOT_COMMIT }} | |
update-script: | | |
version="$(git ls-remote --refs --sort='v:refname' --tags https://github.com/axel-download-accelerator/axel.git | tail --lines=1 | cut --delimiter='/' --fields=3 | cut -c 2-)" | |
sed -i 's/^\(version: \).*$/\1'"\"$version\""'/' snap/snapcraft.yaml |