Skip to content

Commit

Permalink
fix(github): repo URL
Browse files Browse the repository at this point in the history
  • Loading branch information
breakthewall committed Oct 7, 2021
1 parent 4af1a2b commit 1e7228c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
- name: Checkout conda-forge
- name: Checkout feedstock fork
uses: actions/checkout@v2
with:
repository: conda-forge/brs_utils-feedstock
repository: brsynth/brs_utils-feedstock
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token.
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
token: ${{ secrets.GITHUB_TOKEN }} # `GitHub_PAT` is a secret that contains your PAT
Expand All @@ -68,15 +68,14 @@ jobs:
git config --local user.email "$GITHUB_EMAIL"
git config --local user.name "$GITHUB_USERNAME"
git commit -m "chore(meta.yml): update version" -a
# git push --force --quiet "https://${{ env.GITHUB_USERNAME }}:${{ secrets.GITHUB_TOKEN }}@${{ env.DEPLOY_URL }}" master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_USERNAME: breakthewall
GITHUB_EMAIL: [email protected]
DEPLOY_URL: github.com/conda-forge/brs_utils-feedstock
# DEPLOY_URL: github.com/conda-forge/brs_utils-feedstock
VERSION: ${{ steps.tag_version.outputs.new_tag }}
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository: conda-forge/brs_utils-feedstock
repository: brsynth/brs_utils-feedstock

0 comments on commit 1e7228c

Please sign in to comment.