Commit 38af86e1 authored by lavalamp's avatar lavalamp Committed by GitHub

ci: More CI pipeline fixes (#6550)

Move git config
parent 11a8df2a
......@@ -18,6 +18,10 @@ jobs:
with:
token: ${{ secrets.RELEASE_SERVICE_ACCESS_TOKEN }}
ref: main
- name: Git config
run: |
git config user.name "UL Service Account"
git config user.email "hello-happy-puppy@users.noreply.github.com"
- name: Add CODEOWNERS file
run: |
echo "@uniswap/web-admins" > CODEOWNERS
......@@ -25,6 +29,4 @@ jobs:
git commit -m "ci: add global CODEOWNERS"
- name: Git push
run: |
git config user.name "UL Service Account"
git config user.email "hello-happy-puppy@users.noreply.github.com"
git push origin main:releases/staging --force
......@@ -18,8 +18,10 @@ jobs:
with:
token: ${{ secrets.RELEASE_SERVICE_ACCESS_TOKEN }}
ref: releases/staging
- name: Git push
- name: Git config
run: |
git config user.name "UL Service Account"
git config user.email "hello-happy-puppy@users.noreply.github.com"
- name: Git push
run: |
git push origin releases/staging:releases/prod --force
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment