-
Notifications
You must be signed in to change notification settings - Fork 16
53 lines (44 loc) · 1.32 KB
/
actorcodes.yml
File metadata and controls
53 lines (44 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: update actor codes
on:
workflow_dispatch:
env:
node_version: 16
git_email: jpschwartz2@uwalumni.com
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: glifio/filecoin-descriptors
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
- run: |
go get ./...
go run *.go
- uses: actions/upload-artifact@v4
with:
name: actor-info
path: output/
- uses: actions/checkout@v4
- run: rm -rf packages/filecoin-actor-utils/src/data
- run: mkdir -p packages/filecoin-actor-utils/src/data
- uses: actions/download-artifact@v4
with:
name: actor-info
path: packages/filecoin-actor-utils/src/data
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
commit-message: Update actor-info
committer: ${{ github.actor }} <${{ env.git_email }}>
author: ${{ github.actor }} <${{ env.git_email }}>
branch: actions/update-actor-info
delete-branch: true
title: "Update actor codes and descriptors"
body: "Update actor codes and descriptors"
labels: |
automated pr