diff options
author | Tamir Duberstein <tamird@google.com> | 2020-12-28 13:55:38 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-12-28 13:57:54 -0800 |
commit | 3ff7324dfa7c096a50b628189d5c3f2d4d5ec2f6 (patch) | |
tree | cbdd34171c8c51a10d35f48f94cdf5766f76b68f /.github | |
parent | 5dc60a76328af5baf2b9f92021fbb7d6b64ef21e (diff) |
Avoid duplicate `run` key
This GitHub action has been failing since 4e963c9.
PiperOrigin-RevId: 349327675
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/go.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c87ab22ef..ff3059e2a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -44,6 +44,6 @@ jobs: restore-keys: | ${{ runner.os }}-bazel- - run: make go - run: | + - run: | git remote add upstream "https://github.com/${{ github.repository }}" git push upstream go:go |