From 20aa2a5dd933b796405df09bf80b9fe5f713ba89 Mon Sep 17 00:00:00 2001 From: Sebastien Roy Date: Wed, 8 May 2024 16:10:45 -0400 Subject: [PATCH] add missing file --- .github/actions/pushversion/action.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/actions/pushversion/action.yml diff --git a/.github/actions/pushversion/action.yml b/.github/actions/pushversion/action.yml new file mode 100644 index 0000000..13b6d4c --- /dev/null +++ b/.github/actions/pushversion/action.yml @@ -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 git@github.com:${GITHUB_REPOSITORY} + git push --tags git@github.com:${GITHUB_REPOSITORY} + shell: bash +