Skip to content

Commit c3abf5c

Browse files
committed
Fix master workflow triggers and publish build
1 parent 3e2ab92 commit c3abf5c

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/publish-labspace.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,23 @@ jobs:
1616
- name: Checkout code
1717
uses: actions/checkout@v4
1818

19+
- name: Set up Docker Buildx
20+
uses: docker/setup-buildx-action@v3
21+
1922
- name: Log in to DockerHub
2023
uses: docker/login-action@v3
2124
with:
2225
username: ${{ secrets.DOCKERHUB_USERNAME }}
2326
password: ${{ secrets.DOCKERHUB_TOKEN }}
2427

28+
- name: Build Workspace Image Locally
29+
uses: docker/build-push-action@v5
30+
with:
31+
context: .
32+
file: labspace/Dockerfile.workspace
33+
load: true
34+
tags: aerabi/docker-commandos-workspace:latest
35+
2536
- name: Publish Labspace
2637
uses: dockersamples/publish-labspace-action@v2
2738
with:

0 commit comments

Comments
 (0)