Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

build(deps): bump log from 0.4.19 to 0.4.20 #279

build(deps): bump log from 0.4.19 to 0.4.20

build(deps): bump log from 0.4.19 to 0.4.20 #279

Workflow file for this run

name: Docker Image CI
on:
push:
branches:
- '**'
tags:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Get branch or tag name
id: ref-name
run: echo ::set-output name=ref::${GITHUB_REF#refs/*/}
-
name: Build and push
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/rust-libp2p-server:${{ steps.ref-name.outputs.ref }}