We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a .github file as follow I want copy it to another dir.
name: github pages on: push: branches: - main jobs: deploy: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - name: Setup Node uses: actions/setup-node@v2.1.0 with: node-version: '12.x' - name: Get yarn cache id: yarn-cache run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache dependencies uses: actions/cache@v2 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-website-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-website- - run: yarn install --frozen-lockfile - run: yarn build - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: .crd-dist
But when use copy-template-dir, the output file is converted to
name: github pages on: push: branches: - main jobs: deploy: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - name: Setup Node uses: actions/setup-node@v2.1.0 with: node-version: '12.x' - name: Get yarn cache id: yarn-cache run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache dependencies uses: actions/cache@v2 with: path: $ key: $-website-$ restore-keys: | $-website- - run: yarn install --frozen-lockfile - run: yarn build - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: $ publish_dir: .crd-dist
Is there any hook to use custom syntax to achieve variable injection to avoid such situation.
The text was updated successfully, but these errors were encountered:
I hope it's not too late. I have created a package that uses regex to customize syntax for achieving variable injection.
copy-template-dir-variable-injection
I will pull request soon!
Sorry, something went wrong.
No branches or pull requests
background
There is a .github file as follow I want copy it to another dir.
But when use copy-template-dir, the output file is converted to
Is there any hook to use custom syntax to achieve variable injection to avoid such situation.
The text was updated successfully, but these errors were encountered: