Compare commits
No commits in common. "255336279595de9100ebe3e005f6cc50c5edbeb9" and "89b656f8027b1696b1f1cf7eaeb99090c0088d83" have entirely different histories.
2553362795
...
89b656f802
2 changed files with 10 additions and 19 deletions
|
@ -21,15 +21,6 @@ steps:
|
|||
commands:
|
||||
- nix build .#nixos-runner
|
||||
- nix run .#push-container -- result
|
||||
- podman load --input result | sed -n -e "s/Loaded image:.\\(.*\\)/\\1/p" > loaded-image
|
||||
- cat loaded-image
|
||||
- podman images
|
||||
- podman tag "$(<loaded-image)" "${REGISTRY}/${REPOSITORY}:${GITHUB_RUN_NUMBER}-${GITHUB_SHA:0:8}"
|
||||
- podman tag "$(<loaded-image)" "${REGISTRY}/${REPOSITORY}:latest"
|
||||
- podman images
|
||||
- podman push "${REGISTRY}/${REPOSITORY}:${GITHUB_RUN_NUMBER}-${GITHUB_SHA:0:8}"
|
||||
- podman push "${REGISTRY}/${REPOSITORY}:latest"
|
||||
- podman logout "${REGISTRY}"
|
||||
settings:
|
||||
registry: docker.io
|
||||
repository: jcollie/nixos-runner
|
||||
|
|
20
.github/workflows/build.yaml
vendored
20
.github/workflows/build.yaml
vendored
|
@ -12,16 +12,16 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
- run: set
|
||||
- run: nix build -L .#nixos-runner
|
||||
- uses: redhat-actions/podman-login@v1
|
||||
with:
|
||||
registry: ghcr.io/${{ github.repository_owner }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ github.token }}
|
||||
# - run: echo -n "${PASSWORD}" | podman login --username ${USERNAME} --password-stdin ${REPOSITORY}
|
||||
# env:
|
||||
# REPOSITORY: ghcr.io/${{ github.repository_owner }}
|
||||
# USERNAME: ${{ github.actor }}
|
||||
# PASSWORD: ${{ github.token }}
|
||||
# - uses: redhat-actions/podman-login@v1
|
||||
# with:
|
||||
# registry: ghcr.io/${{ github.repository_owner }}
|
||||
# username: ${{ github.actor }}
|
||||
# password: ${{ github.token }}
|
||||
- run: echo -n "${PASSWORD}" | podman login --username ${USERNAME} --password-stdin ${REPOSITORY}
|
||||
env:
|
||||
REPOSITORY: ghcr.io/${{ github.repository_owner }}
|
||||
USERNAME: ${{ github.actor }}
|
||||
PASSWORD: ${{ github.token }}
|
||||
- run: podman load --input result | sed -n -e "s/Loaded image:.\\(.*\\)/loaded-image=\\1/p" >> $GITHUB_OUTPUT
|
||||
id: podman-load-image
|
||||
- run: podman images
|
||||
|
|
Loading…
Reference in a new issue