Skip to content

pomverte is flying to infinity and beyond πŸš€ #2

pomverte is flying to infinity and beyond πŸš€

pomverte is flying to infinity and beyond πŸš€ #2

Workflow file for this run

---
name: Build bats docker image
run-name: ${{ github.actor }} is flying to infinity and beyond πŸš€
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/bats
IMAGE_TAG: v1.10.0-curl
jobs:
build-and-push-docker-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .bats/
push: false
tags: ${{ env.IMAGE_TAG }}