Skip to content

add examples

add examples #2

Workflow file for this run

name: ci
on:
push:
branches:
- "main"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Get Version
run: |
NAME=$(grep '"name"' package.json | cut -d '"' -f 4 | head -n 1)
VERSION=$(echo $(grep '"version"' package.json | cut -d '"' -f 4 | head -n 1))
echo "NAME=${NAME}" >> $GITHUB_ENV
echo "VERSION=${VERSION}" >> $GITHUB_ENV
echo "VERSION=$VERSION"
- name: Build and Push
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: "${{ secrets.DOCKER_HUB_USERNAME }}/${{env.NAME}}:latest,${{ secrets.DOCKER_HUB_USERNAME }}/${{env.NAME}}:${{env.VERSION}}"