Skip to content

Commit ef6f0f2

Browse files
committed
fix: adding missing docker login
1 parent a6956ef commit ef6f0f2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/nix.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,13 @@ jobs:
8181
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
8282
tags: tag:ci
8383

84+
- name: Login to GitHub Container Registry
85+
uses: docker/login-action@v3
86+
with:
87+
registry: ghcr.io
88+
username: ${{ github.actor }}
89+
password: ${{ secrets.GITHUB_TOKEN }}
90+
8491
- uses: actions/cache@v4
8592
with:
8693
path: |
@@ -91,7 +98,7 @@ jobs:
9198
${{ runner.os }}-go-
9299
93100
- name: Run Command
94-
run: nix develop --accept-flake-config --command ${{ inputs.command }}
101+
run: ${{ inputs.command }}
95102

96103
- name: Upload Test Coverage
97104
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)