Skip to content

eslint fixes #2273

eslint fixes #2273 #16

name: Docker Images Beta CI
on:
push:
branches:
- draftbot-v5
workflow_dispatch:
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 current date
id: date
run: echo "::set-output name=date::$(date +'%s')"
-
name: Build and push Core
uses: docker/build-push-action@v3
with:
context: .
file: ./Core/Dockerfile
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/core-beta:latest,${{ secrets.DOCKER_HUB_USERNAME }}/core-beta:${{ steps.date.outputs.date }}
-
name: Build and push Discord
uses: docker/build-push-action@v3
with:
context: .
file: ./Discord/Dockerfile
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/discord-beta:latest,${{ secrets.DOCKER_HUB_USERNAME }}/discord-beta:${{ steps.date.outputs.date }}