Update AppsTable.module.scss #52
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: build_and_deploy | |
on: | |
push: | |
branches: | |
- 'main' | |
paths-ignore: | |
- '**/README.md' | |
# Leftover from original build-and-deploy? | |
# workflow_dispatch: | |
env: | |
ACTIONS_STEP_DEBUG: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: use node.js 22.9.0 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.9.0 | |
- name: Initialize Sub-Packages | |
run: npm run init-project container | |
- name: Initialize Project | |
run: npm run init-project twice | |
- name: Build tapis-ui | |
run: npm run build | |
- name: Debug Build Directory | |
run: ls -la dist | |
- name: upload artifacts | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: dist | |
deploy: | |
# Add a dependency to the build job | |
needs: build | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
# Deploy to the github-pages environment | |
environment: | |
name: github-pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |