fix(appstore): use URL-safe base64 encoding for user content proxy URLs #67
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| name: Check node dist files | |
| on: | |
| pull_request: | |
| jobs: | |
| changed_files: | |
| runs-on: ubuntu-latest-low | |
| name: Check node dist files | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@dcc7a0cba800f454d79fff4b993e8c3555bcc0a8 # v45.0.7 | |
| with: | |
| files: dist/** | |
| - name: Run step if any file(s) in the dist folder change | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| run: | | |
| echo "One or more files in the dist folder has changed. Do NOT commit files in there as they will be generated automatically once a pull request is merged" | |
| echo "List all the files that have changed: ${{ steps.changed-files.outputs.all_changed_files }}" | |
| exit 1 |