2021-05-10 14:11:01 +00:00
|
|
|
name: Prepare
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-06-23 09:12:01 +00:00
|
|
|
branches: [ master, main, unscheduled, integration, beta, freemium-master, freemium-main ]
|
2021-05-10 14:11:01 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
prepare:
|
|
|
|
if: github.repository == 'moodlemobile/moodleapp'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Prepare builds
|
|
|
|
env:
|
|
|
|
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
|
|
|
|
run: ./.github/scripts/prepare.sh
|