-
Notifications
You must be signed in to change notification settings - Fork 12
38 lines (30 loc) · 896 Bytes
/
ci.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
38
name: Docker
on:
workflow_dispatch:
push:
branches:
- 'master'
env:
IMAGE_VERSION: latest
jobs:
pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: docker login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Get current timestamp
id: timestamp
run: echo "::set-output name=timestamp::$(date +%s)"
- name: Get short HEAD
id: head
run: echo "::set-output name=head::$(git rev-parse --short HEAD)"
- name: docker build
env:
IMAGE_TAG: ${{ steps.timestamp.outputs.timestamp }}-${{ steps.head.outputs.head }}
run: |
docker build -t chaoyue/kubecit-web:$IMAGE_TAG -f ./Dockerfile .
docker push chaoyue/kubecit-web:$IMAGE_TAG