chore: Upgrade download-artifact #2383
Workflow file for this run
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
on: pull_request | |
jobs: | |
app_version_integrity: | |
name: "Version integrity" | |
runs-on: ubuntu-latest | |
env: | |
APP_VERSION_PATH: "packages/uni_app/app_version.txt" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch origin target branch | |
run: | | |
git fetch origin ${{ github.base_ref }} | |
- name: Ensure app_version was not changed manually or was created just now | |
run: | | |
(! git cat-file -e FETCH_HEAD:${{ env.APP_VERSION_PATH }} && git cat-file -e HEAD:${{env.APP_VERSION_PATH}}) || git diff --quiet FETCH_HEAD:${{ env.APP_VERSION_PATH }} HEAD:${{ env.APP_VERSION_PATH }} || (echo "App version file was modified manually. Skipping deploy" && exit 1) |