Skip to content

Commit

Permalink
Update all devcontainers
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrencev committed Dec 18, 2023
1 parent 6823def commit 0093b6b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,11 @@ jobs:
- name: Update devcontainer.json
run: sed -i "s|ghcr.io/dojoengine/dojo-dev:[a-zA-Z0-9._-]*|ghcr.io/dojoengine/dojo-dev:${{ needs.build-and-push.outputs.tag_name }}|" .devcontainer/devcontainer.json

- name: Update ci devcontainers
run: sed -i "s|ghcr.io/dojoengine/dojo-dev:[a-zA-Z0-9._-]*|ghcr.io/dojoengine/dojo-dev:${{ needs.build-and-push.outputs.tag_name }}|" .github/workflows/ci.yml
- name: Update github action devcontainers
run: |
for file in .github/workflows/*.yml; do
sed -i "s|ghcr.io/dojoengine/dojo-dev:[a-zA-Z0-9._-]*|ghcr.io/dojoengine/dojo-dev:${{ needs.build-and-push.outputs.tag_name }}|" "$file"
done
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
Expand Down

0 comments on commit 0093b6b

Please sign in to comment.