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
I have currently a workflow with an build step and a deploy step, that works as expected:
when: - event: push branch: main steps: build: image: node:slim commands: - corepack enable - pnpm install --frozen-lockfile - pnpm run build deploy: image: alpine/git secrets: - git_token environment: - BUILD_DIR=dist - TARGET_BRANCH=pages commands: # Git configuration - git config --global user.name "$CI_COMMIT_AUTHOR" - git config --global user.email "$CI_COMMIT_AUTHOR_EMAIL" - git clone -b $TARGET_BRANCH https://[email protected]/${CI_REPO}.git $TARGET_BRANCH # Copy build - cp -ar $BUILD_DIR/. $TARGET_BRANCH/ - cp .domains $CI_REPO_NAME || true # Ignore if it doesn't exist # Commit & Push - cd $TARGET_BRANCH - git add . - git diff-index --quiet HEAD || git commit -m "$CI_COMMIT_MESSAGE" - git push
How can i achieve the same as:
... steps: ... deploy: image: alpine/git secrets: - git_token environment: - BUILD_DIR=dist - TARGET_BRANCH=pages commands: # Git configuration - git config --global user.name "$CI_COMMIT_AUTHOR" - git config --global user.email "$CI_COMMIT_AUTHOR_EMAIL" - git clone -b $TARGET_BRANCH https://[email protected]/${CI_REPO}.git $TARGET_BRANCH # Copy build - cp -ar $BUILD_DIR/. $TARGET_BRANCH/ - cp .domains $CI_REPO_NAME || true # Ignore if it doesn't exist # Commit & Push - cd $TARGET_BRANCH - git add . - git diff-index --quiet HEAD || git commit -m "$CI_COMMIT_MESSAGE" - git push
but with appleboy/drone-git-push?
The text was updated successfully, but these errors were encountered:
@vivi90 Yes, you can try it out.
Sorry, something went wrong.
@appleboy
That's the point.. did not find an working solution with appleboy/drone-git-push
appleboy/drone-git-push
No branches or pull requests
I have currently a workflow with an build step and a deploy step, that works as expected:
How can i achieve the same as:
but with appleboy/drone-git-push?
The text was updated successfully, but these errors were encountered: