Skip to content

add iframe-resizer for better control over website iframes (#656) #1008

add iframe-resizer for better control over website iframes (#656)

add iframe-resizer for better control over website iframes (#656) #1008

Workflow file for this run

name: Publish
on:
pull_request:
branches: [master]
push:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pages: write
id-token: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install yarn
run: sudo npm i -g yarn
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Setup GitHub Pages
if: github.event_name == 'push'
uses: actions/configure-pages@v4
- name: Upload Pages artifact
if: github.event_name == 'push'
uses: actions/upload-pages-artifact@v3
with:
path: build
- name: Deploy to GitHub Pages
if: github.event_name == 'push'
uses: actions/deploy-pages@v4