Skip to content

Commit d344051

Browse files
committed
Target the current branch:
- Any changes made to the GitHub action will not be picked up otherwise. This changes the workflow to use GitHub action relative path instead of checking it out off of main.
1 parent d8ccedf commit d344051

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/e2e-dummy-gem.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
bundler-cache: true
1919
working-directory: "test/fixtures/dummy_gem"
2020
- name: "Run easy compile"
21-
uses: "shopify-playground/edouard-playground/.github/actions/easy_compile@main"
21+
uses: "./.github/actions/easy_compile"
2222
with:
2323
step: "compile"
2424
token: ${{ secrets.GITHUB_TOKEN }}
@@ -43,7 +43,7 @@ jobs:
4343
bundler-cache: true
4444
working-directory: "test/fixtures/dummy_gem"
4545
- name: "Run easy compile"
46-
uses: "shopify-playground/edouard-playground/.github/actions/easy_compile@main"
46+
uses: "./.github/actions/easy_compile"
4747
with:
4848
step: "test_${{ matrix.type }}"
4949
token: ${{ secrets.GITHUB_TOKEN }} # TODO Remove this before publishing the gem
@@ -57,12 +57,14 @@ jobs:
5757
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
5858
runs-on: "${{ matrix.os }}"
5959
steps:
60+
- name: "Checkout code"
61+
uses: "actions/checkout@v5"
6062
- name: "Setup Ruby"
6163
uses: "ruby/setup-ruby@v1"
6264
with:
6365
ruby-version: "3.4.7"
6466
- name: "Run easy compile"
65-
uses: "shopify-playground/edouard-playground/.github/actions/easy_compile@main"
67+
uses: "./.github/actions/easy_compile"
6668
with:
6769
token: ${{ secrets.GITHUB_TOKEN }} # TODO Remove this before publishing the gem
6870
step: "install"

0 commit comments

Comments
 (0)