There was an error while loading. Please reload this page.
1 parent 3e2ab92 commit c3abf5cCopy full SHA for c3abf5c
1 file changed
.github/workflows/publish-labspace.yml
@@ -16,12 +16,23 @@ jobs:
16
- name: Checkout code
17
uses: actions/checkout@v4
18
19
+ - name: Set up Docker Buildx
20
+ uses: docker/setup-buildx-action@v3
21
+
22
- name: Log in to DockerHub
23
uses: docker/login-action@v3
24
with:
25
username: ${{ secrets.DOCKERHUB_USERNAME }}
26
password: ${{ secrets.DOCKERHUB_TOKEN }}
27
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
36
- name: Publish Labspace
37
uses: dockersamples/publish-labspace-action@v2
38
0 commit comments