-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (32 loc) · 959 Bytes
/
docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Publish Docker Image
on:
push:
pull_request:
jobs:
docker:
runs-on: ubuntu-latest
if: github.ref_name != 'main'
steps:
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y%m%d')"
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker Image
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
push: true
tags: |
fvergaracl/game:latest
fvergaracl/game:${{ github.ref_name }}
fvergaracl/game:${{ github.ref_name }}.${{ steps.date.outputs.date }}
target: prod