NavRow animation improvements

This commit is contained in:
venashial
2022-06-21 17:25:07 -07:00
parent b15c9d7655
commit fa747515e9
3 changed files with 84 additions and 18 deletions

View File

@@ -28,15 +28,25 @@ jobs:
release:
needs: [lint]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: 16
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Bump version
run: pnpm version patch --commit-hooks false --git-tag-version false
- name: Publish
if: github.ref == 'refs/heads/main'
run: npm publish --tag alpha
run: pnpm publish --no-git-checks --tag alpha --dry-run
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: EndBug/add-and-commit@v9
if: github.ref == 'refs/heads/main'
with:
message: 'Bump package version [skip ci]'
default_author: github_actions

View File

@@ -11,8 +11,8 @@ jobs:
id: cf-pages
uses: WalshyDev/cf-pages-await@v1
with:
accountEmail: ${{ secrets.CF_ACCOUNT_EMAIL }}
apiKey: ${{ secrets.CF_API_KEY }}
accountId: '9ddae624c98677d68d93df6e524a6061'
project: 'omorphia'
apiToken: ${{ secrets.CF_API_TOKEN }}
accountId: '9ddae624c98677d68d93df6e524a6061'
githubToken: ${{ secrets.GITHUB_TOKEN }}
commitHash: ${{ steps.push-changes.outputs.commit-hash }}