mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
test deploy and push
This commit is contained in:
parent
a3380ddbe7
commit
bb017ed04e
1 changed files with 7 additions and 0 deletions
7
.github/workflows/ci-deploy.yaml
vendored
7
.github/workflows/ci-deploy.yaml
vendored
|
|
@ -5,10 +5,17 @@ on:
|
||||||
types: [closed]
|
types: [closed]
|
||||||
branches: [master]
|
branches: [master]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy-contracts:
|
deploy-contracts:
|
||||||
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'CI:Deploy')
|
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'CI:Deploy')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
environment: dev
|
||||||
|
env:
|
||||||
|
ENVIRONMENT: dev
|
||||||
|
REPO_NAME: ${{ github.event.repository.name }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue