CI: test release.yml on every PR

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
This commit is contained in:
Akihiro Suda 2023-01-17 10:39:01 +09:00
parent 412ca496dc
commit ffabc8a296
No known key found for this signature in database
GPG Key ID: 49524C6F9F638F1A

View File

@ -1,7 +1,14 @@
on: on:
push: push:
branches:
- main
- "release/**"
tags: tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
pull_request:
branches:
- main
- "release/**"
name: Containerd Release name: Containerd Release
@ -14,6 +21,7 @@ permissions: # added using https://github.com/step-security/secure-workflows
jobs: jobs:
check: check:
name: Check Signed Tag name: Check Signed Tag
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
timeout-minutes: 5 timeout-minutes: 5
outputs: outputs:
@ -57,7 +65,6 @@ jobs:
build: build:
name: Build Release Binaries name: Build Release Binaries
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
needs: [check]
timeout-minutes: 30 timeout-minutes: 30
strategy: strategy:
matrix: matrix:
@ -77,15 +84,13 @@ jobs:
- dockerfile-ubuntu: 18.04 - dockerfile-ubuntu: 18.04
dockerfile-platform: windows/amd64 dockerfile-platform: windows/amd64
steps: steps:
- name: Set env - name: Set RELEASE_VER
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
shell: bash shell: bash
env:
MOS: ubuntu-20.04
run: | run: |
releasever=${{ github.ref }} releasever=${{ github.ref }}
releasever="${releasever#refs/tags/}" releasever="${releasever#refs/tags/}"
echo "RELEASE_VER=${releasever}" >> $GITHUB_ENV echo "RELEASE_VER=${releasever}" >> $GITHUB_ENV
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
- name: Checkout containerd - name: Checkout containerd
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
@ -128,6 +133,7 @@ jobs:
release: release:
name: Create containerd Release name: Create containerd Release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
permissions: permissions:
contents: write contents: write
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04