75 lines
2.9 KiB
YAML
75 lines
2.9 KiB
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: CI
|
|
|
|
# Controls when the action will run.
|
|
on:
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
# This workflow contains a single job called "build"
|
|
build:
|
|
# The type of runner that the job will run on
|
|
runs-on: ubuntu-latest
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
steps:
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
- uses: actions/checkout@v2
|
|
|
|
# Runs a single command using the runners shell
|
|
- name: Run a one-line script
|
|
run: echo Hello, world!
|
|
|
|
- name: Build and push Docker images
|
|
# You may pin to the exact commit or the version.
|
|
# uses: docker/build-push-action@e1b7f96249f2e4c8e4ac1519b9608c0d48944a1f
|
|
uses: docker/build-push-action@v2.4.0
|
|
with:
|
|
# List of extra privileged entitlement (eg. network.host,security.insecure)
|
|
allow: # optional
|
|
# List of build-time variables
|
|
build-args: # optional
|
|
# Builder instance
|
|
builder: # optional
|
|
# Build's context is the set of files located in the specified PATH or URL
|
|
context: # optional
|
|
# Path to the Dockerfile
|
|
file: # optional
|
|
# List of metadata for an image
|
|
labels: # optional
|
|
# Load is a shorthand for --output=type=docker
|
|
load: # optional, default is false
|
|
# Set the networking mode for the RUN instructions during build
|
|
network: # optional
|
|
# Do not use cache when building the image
|
|
no-cache: # optional, default is false
|
|
# List of output destinations (format: type=local,dest=path)
|
|
outputs: # optional
|
|
# List of target platforms for build
|
|
platforms: # optional
|
|
# Always attempt to pull a newer version of the image
|
|
pull: # optional, default is false
|
|
# Push is a shorthand for --output=type=registry
|
|
push: # optional, default is false
|
|
# List of secrets to expose to the build (eg. key=string, GIT_AUTH_TOKEN=mytoken)
|
|
secrets: # optional
|
|
# List of secret files to expose to the build (eg. key=filename, MY_SECRET=./secret.txt)
|
|
secret-files: # optional
|
|
# List of SSH agent socket or keys to expose to the build
|
|
ssh: # optional
|
|
# List of tags
|
|
tags: # optional
|
|
# Sets the target stage to build
|
|
target: # optional
|
|
# GitHub Token used to authenticate against a repository for Git context
|
|
github-token: # optional, default is ${{ github.token }}
|