Skip to content

Commit

Permalink
Merge pull request #3 from qognitive/bugfix/merged-to-quickly
Browse files Browse the repository at this point in the history
add missing file
  • Loading branch information
sebastroy authored May 8, 2024
2 parents f6fa330 + 20aa2a5 commit c6e2f67
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/actions/pushversion/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "push version"
description: "push our version from the local repo"

runs:
using: "composite"
steps:
- name: push to repo
run: |
mkdir -p ~/.ssh
echo "${QCOG_DEPLOY_PUSH_KEY}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
git push [email protected]:${GITHUB_REPOSITORY}
git push --tags [email protected]:${GITHUB_REPOSITORY}
shell: bash

0 comments on commit c6e2f67

Please sign in to comment.