Skip to content

Building and testing image with github actions #1

Building and testing image with github actions

Building and testing image with github actions #1

Workflow file for this run

name: image-ci
on:
push:
branches:
- master
tags:
- v*
jobs:
build-push-tags:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: harxhitttt/image-ci
tags: |
type=ref,name=short
type=ref,event=tag
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push image
uses: docker/build-push-action@v5
with:
context: ../development-workflow/api-node
file: ./Dockerfile.2
push: true
tags: ${{ steps.meta.outputs.tags }}
- name: Run test on image
run: |
docker run --rm harxhitttt/image-ci:latest node -v