referance var directly instead of using env #15
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
# This workflow is managed by https://github.com/raft-tech/df-gh-templates. All attempts to edit outside of df-gh-templates will be futile. | |
name: Push to SSF | |
on: | |
push: | |
branches: | |
- dev | |
- main | |
jobs: | |
push-to-ssf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Push To SSF | |
run: | | |
echo Pushing to SSF... | |
git config user.name "Raft" | |
git config user.email "[email protected]" | |
git remote add ssf "https://raft:${{ secrets.SSF_ACCESS_TOKEN }}@${{ secrets.SSF_REPO }}" | |
git push -u ssf ${GITHUB_REF_NAME}:${GITHUB_REF_NAME} |