We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 380565f commit 1103017Copy full SHA for 1103017
.github/workflows/ci-pipeline.yml
@@ -25,6 +25,14 @@ jobs:
25
test:
26
runs-on: ubuntu-latest
27
steps:
28
+ # GitHub gives only repository complete in <owner>/<repo> format.
29
+ # Need some manual shenanigans
30
+ # Set IMAGE_NAME so we can push to <owner>/<repo>/<image>
31
+ # Transform os/arch to os-arch for suffix target
32
+ - name: Set ENV variables
33
+ run: |
34
+ echo "IMAGE_NAME=${GITHUB_REPOSITORY#$GITHUB_REPOSITORY_OWNER/}" >> $GITHUB_ENV
35
+
36
- name: Checkout repository
37
uses: actions/checkout@v4
38
0 commit comments