dump it to a file first?
Some checks failed
Continuous Releases / build (push) Failing after 2s

This commit is contained in:
Eau
2026-03-20 00:37:43 -05:00
parent f6049423f9
commit 65c0ebe54c

View File

@@ -14,8 +14,8 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- run: echo "$REGISTRY_CREDENTIALS" | docker login tea.werats.gay --username ${{ env.GITHUB_TRIGGERING_ACTOR }} --password-stdin - run: mkdir -p /etc/secrets || true
env: - run: printf '%s' "${{ secrets.CI_ACCESS }}" > /etc/secrets/docker.txt
REGISTRY_CREDENTIALS: ${{ secrets.CI_ACCESS }} - run: docker login tea.werats.gay --username ${{ env.GITHUB_TRIGGERING_ACTOR }} --password-stdin < /etc/secrets/docker.txt
- run: docker build . -t ${{ env.IMAGE_TAG }} --build-arg UBUNTU_VERSION=${{ env.UBUNTU_VERSION }} - run: docker build . -t ${{ env.IMAGE_TAG }} --build-arg UBUNTU_VERSION=${{ env.UBUNTU_VERSION }}
- run: docker push ${{ env.IMAGE_TAG }} - run: docker push ${{ env.IMAGE_TAG }}