Datepicker label height fix #1116
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
name: Clean up pages | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Create empty folder | |
run: mkdir empty | |
- name: Deploy documentation to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages # The branch the action should deploy to. | |
folder: empty # The folder the action should deploy. | |
# TARGET_FOLDER: ${{ steps.branch.outputs.branch }} # The folder the action should deploy to. | |
target-folder: pr-${{ github.event.number }} # The folder the action should deploy to. | |