Skip to content

Commit

Permalink
ci: fix broken publish + changeset integrity
Browse files Browse the repository at this point in the history
  • Loading branch information
tynes committed Apr 6, 2022
1 parent 68a933d commit 4f0b504
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/changesets.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: 'Changeset integrity checker'
name: Changeset integrity checker
on:
- pull_request_target

Expand All @@ -10,5 +10,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: 'changeset status'
- name: Install Dependencies
uses: yarn

- name: Changeset Status
run: npx changeset status
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ jobs:
- name: Publish go-builder
uses: docker/build-push-action@v2
with:
context: ./ops/docker/go-builder
file: ./Dockerfile
context: .
file: ./ops/docker/go-builder/Dockerfile
push: true
tags: ethereumoptimism/go-builder:${{ needs.release.outputs.go-builder }},ethereumoptimism/go-builder:latest

Expand All @@ -196,8 +196,8 @@ jobs:
- name: Publish js-builder
uses: docker/build-push-action@v2
with:
context: ./ops/docker/js-builder
file: ./Dockerfile
context: .
file: ./ops/docker/js-builder/Dockerfile
push: true
tags: ethereumoptimism/js-builder:${{ needs.release.outputs.js-builder }},ethereumoptimism/js-builder:latest

Expand Down

0 comments on commit 4f0b504

Please sign in to comment.