Skip to content

Commit a2cb766

Browse files
committed
fix(ci): remove backslash continuation from login steps.
1 parent 6363d87 commit a2cb766

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ jobs:
1313
uses: actions/checkout@v4
1414

1515
- name: Login to GHCR
16-
run: echo "${{ secrets.GITHUB_TOKEN }}" | \
17-
docker login ghcr.io -u ${{ github.actor }} --password-stdin
16+
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
1817

1918
- name: Compile LaTeX document
2019
run: |

.github/workflows/publish-image.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313

1414
- name: Login to GHCR
15-
run: echo "${{ secrets.GITHUB_TOKEN }}" | \
16-
docker login ghcr.io -u ${{ github.actor }} --password-stdin
15+
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
1716

1817
- name: Build and push
1918
run: |

0 commit comments

Comments
 (0)