Skip to content

Commit

Permalink
Log in to ghcr and other misc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirks committed Jun 7, 2024
1 parent 72bb4f1 commit 7bbda1a
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,26 @@ jobs:
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build images
uses: devcontainers/[email protected]
# Options: https://github.com/devcontainers/ci/blob/main/action.yml
with:
imageName: ghcr.io/e-gineering/fabric-runtime
cacheFrom: ghcr.io/e-gineering/fabric-runtime
imageName: ghcr.io/${{ github.repository }}/fabric-runtime
cacheFrom: ghcr.io/${{ github.repository }}/fabric-runtime
imageTag: 1.2
push: always
subFolder: src/fabric-runtime

Expand Down

0 comments on commit 7bbda1a

Please sign in to comment.