Add ability to toggle whether to show locked users (#573) #217
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
| name: Build and Deploy Edge version to GH Pages | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 100 | |
| fetch-tags: true | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install and Build 🔧 | |
| run: | | |
| yarn install --immutable | |
| yarn build --base=/synapse-admin | |
| - name: Deploy 🚀 | |
| uses: JamesIves/github-pages-deploy-action@v4.6.8 | |
| with: | |
| branch: gh-pages | |
| folder: dist |