aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/lint-test-build-push.yaml
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-03-13 19:38:43 +0000
committerGravatar Joe Banks <[email protected]>2021-03-13 19:38:43 +0000
commitc85249f5bb050104c8ab8fd91d8098438c865e5f (patch)
tree199ba31d8263edaff3d44737d8a62e01600c78b7 /.github/workflows/lint-test-build-push.yaml
parentMerge PR #93 - fix NsJail tests (diff)
master => main
Diffstat (limited to '.github/workflows/lint-test-build-push.yaml')
-rw-r--r--.github/workflows/lint-test-build-push.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/lint-test-build-push.yaml b/.github/workflows/lint-test-build-push.yaml
index e86096f..0b1733f 100644
--- a/.github/workflows/lint-test-build-push.yaml
+++ b/.github/workflows/lint-test-build-push.yaml
@@ -3,7 +3,7 @@ name: Lint, Test, Build, Push
on:
push:
branches:
- - master
+ - main
pull_request:
@@ -14,7 +14,7 @@ jobs:
# Determine whether or not we should build the
# final production image and push it to GHCR.
production_build: ${{ github.event_name != 'pull_request' &&
- github.ref == 'refs/heads/master' }}
+ github.ref == 'refs/heads/main' }}
steps:
# Create a short SHA-tag to tag built images
@@ -45,8 +45,8 @@ jobs:
# Create a local cache directory for PR builds, as the image
# we build for PRs may start to deviate from the "latest" image
- # currently registered in the GHCR. For master, the best we can
- # do is use the previous master build, which can be cached from
+ # currently registered in the GHCR. For main, the best we can
+ # do is use the previous main build, which can be cached from
# the GHCR.
- name: Cache Image Layers
if: github.event_name == 'pull_request'