Skip to content

Update

Update #74

Workflow file for this run

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-candidate:
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: |
stable_version=$(wget -qO- https://download.sublimetext.com/latest/stable)
sed -i 's/^\(version: \).*$/\1'"\"$stable_version\""'/' snap/snapcraft.yaml
sync-dev:
name: Sync dev version with upstream
environment: "Dev Branch"
runs-on: ubuntu-latest
steps:
- name: Sync version with upstream
uses: snapcrafters/ci/sync-version@main
with:
branch: dev
token: ${{ secrets.SNAPCRAFTERS_BOT_COMMIT }}
update-script: |
dev_version=$(wget -qO- https://download.sublimetext.com/latest/dev)
sed -i 's/^\(version: \).*$/\1'"\"$dev_version\""'/' snap/snapcraft.yaml