-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (49 loc) · 1.36 KB
/
publish_agent_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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Publish Docker Agent
on:
workflow_dispatch:
inputs:
version:
description: version
required: true
type: string
is-latest:
type: boolean
description: latest
required: false
push:
branches:
- asdasd
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: asdasd
- name: Login Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.A }}
password: ${{ secrets.B }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# - name: Build and push Docker images
# uses: docker/build-push-action@v5
# with:
# context: ./
# file: ./Dockerfile
# build-args: AGENT_VERSION=${{ inputs.version }}
# builder: ${{ steps.buildx.outputs.name }}
# push: true
# tags: katalonstudio/agent:${{ inputs.version }}
- name: Build and push Docker images
uses: docker/build-push-action@v5
# if: ${{ inputs.is-latest }}
with:
context: ./
file: ./Dockerfile
build-args: AGENT_VERSION=${{ inputs.version }}
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: drag0nfire19/katalon-agent:3.1.0