bugfix for airplane icon disappearing in SearchCard component #11
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: [push] | |
env: | |
PUBLIC_BLOG_API_HOSTNAME: ${{ vars.PUBLIC_BLOG_API_HOSTNAME }} | |
PUBLIC_API_HOSTNAME: ${{ vars.PUBLIC_API_HOSTNAME }} | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
deployments: write | |
name: Publish to Cloudflare Pages | |
steps: | |
- name: Public IP | |
id: ip | |
uses: haythem/[email protected] | |
- name: Print Public IP | |
run: | | |
echo ${{ steps.ip.outputs.ipv4 }} | |
echo ${{ steps.ip.outputs.ipv6 }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: install packages and build | |
run: | | |
npm install | |
npm run build | |
- name: Publish to Cloudflare Pages | |
uses: cloudflare/pages-action@v1 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
projectName: visperto-ui | |
directory: dist |