Skip to content

add database to test action #5

add database to test action

add database to test action #5

Workflow file for this run

name: Dev container
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Build image
run: docker build . --file .devcontainer/Dockerfile --tag ghcr.io/moveaxlab/oracle-devcontainer:latest
- name: Log in to the registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Push image
run: docker push ghcr.io/moveaxlab/oracle-devcontainer:latest