Skip to content

fix some tests and skip (#250) #372

fix some tests and skip (#250)

fix some tests and skip (#250) #372

Workflow file for this run

name: Build test OCI Image
on:
push:
branches:
- main
- fix-bun
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Login to Github Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: "Build and push OCI image, tag: tests"
uses: docker/[email protected]
with:
context: .
push: true
file: oci/tests.Containerfile
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:tests
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:tests-${{github.sha}}