diff options
| author | Steffen Ernst <steffen.ernst@mullvad.net> | 2025-05-13 09:20:21 +0200 |
|---|---|---|
| committer | Bug Magnet <marco.nikic@mullvad.net> | 2025-05-26 16:27:43 +0200 |
| commit | d1c550e4eca36f89af16ef82517f34647090f1cc (patch) | |
| tree | 01166946dc1cb66b48a1e6c999380800b4e6a1cd /.github/workflows | |
| parent | 119926e1bf8f71262c2841f3da37123e81e602b3 (diff) | |
| download | mullvadvpn-d1c550e4eca36f89af16ef82517f34647090f1cc.tar.xz mullvadvpn-d1c550e4eca36f89af16ef82517f34647090f1cc.zip | |
Fix checkout step needs to be in workflow
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ios-screenshots-creation.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/ios-screenshots-tests.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/ios-validate-build-schemas.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/ios.yml | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/ios-screenshots-creation.yml b/.github/workflows/ios-screenshots-creation.yml index 3e0e387e27..d226ab5121 100644 --- a/.github/workflows/ios-screenshots-creation.yml +++ b/.github/workflows/ios-screenshots-creation.yml @@ -21,6 +21,9 @@ jobs: TEST_ACCOUNT: ${{ secrets.IOS_TEST_ACCOUNT_NUMBER }} steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Setup project uses: ./.github/actions/ios/setup-project-toolchain with: diff --git a/.github/workflows/ios-screenshots-tests.yml b/.github/workflows/ios-screenshots-tests.yml index 7c0311f8ac..17e3545fe1 100644 --- a/.github/workflows/ios-screenshots-tests.yml +++ b/.github/workflows/ios-screenshots-tests.yml @@ -25,6 +25,9 @@ jobs: TEST_ACCOUNT: ${{ secrets.IOS_TEST_ACCOUNT_NUMBER }} steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Setup project uses: ./.github/actions/ios/setup-project-toolchain with: diff --git a/.github/workflows/ios-validate-build-schemas.yml b/.github/workflows/ios-validate-build-schemas.yml index 4fe5cc9d5d..cfc22466a2 100644 --- a/.github/workflows/ios-validate-build-schemas.yml +++ b/.github/workflows/ios-validate-build-schemas.yml @@ -26,6 +26,9 @@ jobs: SOURCE_PACKAGES_PATH: .spm steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Setup project uses: ./.github/actions/ios/setup-project-toolchain with: diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index ecdad1e4e2..94cf5c4494 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -52,6 +52,9 @@ jobs: env: SOURCE_PACKAGES_PATH: .spm steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Setup project uses: ./.github/actions/ios/setup-project-toolchain with: |
