Github action: use pinned skopeo from nixpkgs #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Test build job to debug skopeo issues with OCI containers | |
name: Test Build For Compiler Service Container | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
build: | |
# This job must never be run on a PR from outside the same repository | |
runs-on: ubuntu-latest | |
# These permissions are needed to interact with GitHub's OIDC Token endpoint. | |
permissions: | |
id-token: write | |
contents: read | |
env: | |
ECR_REPOSITORY: zmk-builder-lambda | |
REVISION_TAG: ${{ github.event.pull_request && github.event.pull_request.head.sha || github.sha }} | |
PR_NUMBER: ${{ github.event.number }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::431227615537:role/GithubCompilerLambdaBuilder | |
aws-region: us-east-1 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v2 | |
- uses: cachix/install-nix-action@v27 | |
with: | |
nix_path: nixpkgs=channel:nixos-22.05 | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: moergo-glove80-zmk-dev | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Build lambda image | |
run: nix-build release.nix --arg revision "\"${REVISION_TAG}\"" -A lambdaImage -o lambdaImage | |
- name: Import OCI image into docker-daemon | |
env: | |
REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
run: nix shell -f nix/pinned-nixpkgs.nix skopeo -c skopeo --insecure-policy copy oci:lambdaImage docker-daemon:$REGISTRY/$ECR_REPOSITORY:$REVISION_TAG |