Skip to content

Commit

Permalink
Sync files with networkservicemesh/cmd-template
Browse files Browse the repository at this point in the history
This PR syncs files with https://github.com/networkservicemesh/cmd-template

Revision: https://github.com/networkservicemesh/cmd-template/commits/60159f3a0d80d54f9a68ec4e2fa9f0afd5b0ff01

commit 60159f3a0d80d54f9a68ec4e2fa9f0afd5b0ff01
Author: Denis Tingaikin <49399980+denis-tingaikin@users.noreply.github.com>
Date:   Thu Jun 17 20:44:32 2021 +0700

    feat: Add release docker-push-ghcr workflow (#78)

    * Add release docker-push-ghcr

    Signed-off-by: denis-tingajkin <denis.tingajkin@xored.com>

    * apply review comments

    Signed-off-by: denis-tingajkin <denis.tingajkin@xored.com>

Signed-off-by: NSMBot <nsmbot@networkservicmesh.io>
  • Loading branch information
NSMBot committed Jun 17, 2021
1 parent 92119b6 commit 717c596
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: ci
on:
push:
branches:
- main
- 'main'
- 'release/**'
pull_request:
jobs:
yamllint:
Expand Down Expand Up @@ -133,7 +134,7 @@ jobs:
- name: Build container
run: docker build .
- name: Run tests
run: docker run --privileged --rm -e NSM_LOG_LEVEL=DEBUG $(docker build -q . --target test)
run: docker run --privileged --rm $(docker build -q . --target test)
- name: Find merged PR
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: jwalton/gh-find-current-pr@v1
Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: Release

on:
workflow_run:
types:
- completed
workflows:
- 'ci'
jobs:
docker:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' && contains(github.event.workflow_run.head_branch, 'release/') }}
steps:
- name: Get tag
run: |
branch=${{github.event.workflow_run.head_branch}}
echo '::set-output name=tag::'${branch#release/}
id: get-tag-step

- name: "Checkout"
uses: actions/checkout@v2

- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v1

- name: "Login to GitHub Container Registry"
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: "Build and push"
uses: docker/build-push-action@v2
with:
file: Dockerfile
context: .
push: true
tags: "ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ steps.get-tag-step.outputs.tag }}"

0 comments on commit 717c596

Please sign in to comment.