Skip to content

Commit

Permalink
bourne again shell
Browse files Browse the repository at this point in the history
  • Loading branch information
ribbanya committed Feb 28, 2024
1 parent c4873aa commit c90edf1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,20 @@ jobs:
runs-on: ubuntu-latest
env:
REGISTRY: ghcr.io
IMAGE: doldecomp/build-melee:main
steps:
- uses: actions/checkout@v4
- name: Log into container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Grab Melee DOL
run: |
docker pull "ghcr.io/doldecomp/build-melee:main"
container_id=$(docker create "ghcr.io/doldecomp/build-melee:main")
image="$REGISTRY/$IMAGE"
docker pull "$image"
container_id=$(docker create "$image")
docker cp "$container_id":/orig .
- uses: cachix/install-nix-action@v25
with:
Expand Down

0 comments on commit c90edf1

Please sign in to comment.