Skip to content

Commit 774dcbd

Browse files
Change commit message
1 parent 5241901 commit 774dcbd

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/upgrade.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1+
name: Upgrade
12
on:
23
workflow_dispatch:
34
inputs:
45
network:
56
description: 'Network'
67
required: true
7-
default: 'hardhat'
88
type: choice
99
options:
1010
- hardhat
1111
- bellecour
12-
1312
jobs:
1413
upgrade:
1514
runs-on: ubuntu-latest
@@ -30,9 +29,11 @@ jobs:
3029
echo "Network: $NETWORK"
3130
echo "IS_LOCAL_FORK: $IS_LOCAL_FORK"
3231
npm run upgrade -- --network $NETWORK
33-
echo "Test" > test.txt
32+
echo $(date) > deployments/last-$NETWORK-upgrade.txt
3433
env:
3534
NETWORK: ${{ inputs.network }}
3635
IS_LOCAL_FORK: ${{ inputs.network == 'hardhat'}}
3736
PROD_PRIVATE_KEY: ${{ inputs.network == 'bellecour' && secrets.PROD_PRIVATE_KEY || '' }}
3837
- uses: stefanzweifel/git-auto-commit-action@v5
38+
with:
39+
commit_message: Save files changed during upgrade

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## vNEXT
4+
- Add upgrade workflow. (#64)
45
- Add `dealId` to `TaskClaimedWithVoucher` event. (#61)
56
- Add type-checking script (#53)
67
- Run partial upgrade tests on fork.

0 commit comments

Comments
 (0)