Merge pull request #165 from ember-animation/dependabot/npm_and_yarn/… #12
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
# Because this library needs to be built, | |
# we can't easily point package.json files at the git repo for easy cross-repo testing. | |
# | |
# This workflow brings back that capability by placing the compiled assets on a "dist" branch | |
# (configurable via the "branch" option below) | |
name: Push dist | |
on: | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
push-dist: | |
name: Push dist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: wyvox/action-setup-pnpm@v3 | |
- uses: kategengler/[email protected] | |
with: | |
branch: dist | |
token: ${{ secrets.GITHUB_TOKEN }} | |
working-directory: addon |