Skip to content

Merge pull request #8 from nlnwa/feat/bash #8

Merge pull request #8 from nlnwa/feat/bash

Merge pull request #8 from nlnwa/feat/bash #8

Workflow file for this run

name: Test
on: push
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
permissions:
contents: read
jobs:
test:
name: Build docker image
runs-on: ubuntu-latest
steps:
- name: Extract metadata (tags, labels) and establish version
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=pr
- name: Build and push
uses: docker/build-push-action@v5
with:
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}