Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.github/workflows: added GitHub action script to build Alpine docker #3420

Closed
wants to merge 30 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
SOURCE_BRANCH: ${{ github.ref_name }}

jobs:
build:
x86_64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
context: pkg/docker/alpine
file: pkg/docker/alpine/Dockerfile.debug
builder: ${{ steps.local-repo.outputs.name }}
push: ${{ github.event_name != 'pull_request' }}
push: ${{ github.event_name == 'pull_request' }}
tags: ${{ steps.meta-debug.outputs.tags }}
labels: ${{ steps.meta-debug.outputs.labels }}
add-hosts: local-repo:${{ env.LOCAL_REPO_IP }}
Expand Down