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: ...@@ -18,6 +18,10 @@ jobs:
with: with:
token: ${{ secrets.RELEASE_SERVICE_ACCESS_TOKEN }} token: ${{ secrets.RELEASE_SERVICE_ACCESS_TOKEN }}
ref: main 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 - name: Add CODEOWNERS file
run: | run: |
echo "@uniswap/web-admins" > CODEOWNERS echo "@uniswap/web-admins" > CODEOWNERS
...@@ -25,6 +29,4 @@ jobs: ...@@ -25,6 +29,4 @@ jobs:
git commit -m "ci: add global CODEOWNERS" git commit -m "ci: add global CODEOWNERS"
- name: Git push - name: Git push
run: | 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 git push origin main:releases/staging --force
...@@ -18,8 +18,10 @@ jobs: ...@@ -18,8 +18,10 @@ jobs:
with: with:
token: ${{ secrets.RELEASE_SERVICE_ACCESS_TOKEN }} token: ${{ secrets.RELEASE_SERVICE_ACCESS_TOKEN }}
ref: releases/staging ref: releases/staging
- name: Git push - name: Git config
run: | run: |
git config user.name "UL Service Account" git config user.name "UL Service Account"
git config user.email "hello-happy-puppy@users.noreply.github.com" git config user.email "hello-happy-puppy@users.noreply.github.com"
- name: Git push
run: |
git push origin releases/staging:releases/prod --force 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