Skip to content

Test 9

Test 9 #11

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: latest
- 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: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
- name: Run test on image
run: |
docker run --rm harxhitttt/image-ci:latest node -v