-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not use devcontainers action, use own
Signed-off-by: Michal Czyz <[email protected]>
- Loading branch information
1 parent
972f528
commit 6f9ccfd
Showing
1 changed file
with
23 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,10 +20,27 @@ jobs: | |
with: | ||
ref: "mczyz/dev" | ||
|
||
- name: Pre-build dev container image | ||
uses: devcontainers/[email protected] | ||
# - name: Pre-build dev container image | ||
# uses: devcontainers/[email protected] | ||
# with: | ||
# imageName: ghcr.io/openroad-codespace/test | ||
# cacheFrom: ghcr.io/openroad-codespace/test | ||
# push: always | ||
# configFile: ./.devcontainer/ubuntu-gui/devcontainer.json | ||
|
||
- name: Devcontainer build | ||
run: | | ||
npm install -g @devcontainers/cli | ||
devcontainer build --config .devcontainer/ubuntu-gui/devcontainer.json --workspace-folder . --push false --image-name test:latest | ||
- name: Login to GitHub Container Registry (GHCR) | ||
if: github.event_name != 'pull_request' && github.repository == 'antmicro/openroad-codespace' | ||
uses: docker/login-action@v2 | ||
with: | ||
imageName: ghcr.io/openroad-codespace/test | ||
cacheFrom: ghcr.io/openroad-codespace/test | ||
push: always | ||
configFile: ./.devcontainer/ubuntu-gui/devcontainer.json | ||
registry: ghcr.io | ||
username: gha | ||
password: ${{ github.token }} | ||
|
||
- name: Push container image to GitHub Container Registry (GHCR) | ||
if: github.event_name != 'pull_request' && github.repository == 'antmicro/openroad-codespace' | ||
run: docker push ghcr.io/antmicro/openroad-codespace:test |