Bump the minor-dependencies group with 3 updates #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_call: | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Load environment | |
uses: c-py/action-dotenv-to-setenv@v4 | |
with: | |
env-file: .github/.env | |
- name: Set up Go ${{ env.GO_VERSION }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Build | |
run: make static-linux | |
- name: Upload | |
if: ${{ github.event_name == 'release' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cri-dockerd | |
retention-days: 5 | |
path: | | |
packaging/static/**/**/**/*.tgz | |
deb: | |
if: ${{ github.event_name == 'release' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Load environment | |
uses: c-py/action-dotenv-to-setenv@v4 | |
with: | |
env-file: .github/.env | |
- name: Set up Go ${{ env.GO_VERSION }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Build | |
run: make deb | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cri-dockerd | |
retention-days: 5 | |
path: | | |
packaging/deb/**/**/**/*.deb | |
rpm: | |
if: ${{ github.event_name == 'release' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Load environment | |
uses: c-py/action-dotenv-to-setenv@v4 | |
with: | |
env-file: .github/.env | |
- name: Set up Go ${{ env.GO_VERSION }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Build | |
run: make rpm | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cri-dockerd | |
retention-days: 5 | |
path: | | |
packaging/rpm/**/**/**/*.rpm | |
arm: | |
if: ${{ github.event_name == 'release' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Load environment | |
uses: c-py/action-dotenv-to-setenv@v4 | |
with: | |
env-file: .github/.env | |
- name: Set up Go ${{ env.GO_VERSION }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Build | |
run: make cross-arm | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cri-dockerd | |
retention-days: 5 | |
path: | | |
packaging/static/**/**/**/*.tgz | |
windows: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Load environment | |
uses: c-py/action-dotenv-to-setenv@v4 | |
with: | |
env-file: .github/.env | |
- name: Set up Go ${{ env.GO_VERSION }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Build | |
run: make cross-win | |
- name: Upload | |
if: ${{ github.event_name == 'release' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cri-dockerd | |
retention-days: 5 | |
path: | | |
packaging/static/**/**/**/*.zip | |
mac: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Load environment | |
uses: c-py/action-dotenv-to-setenv@v4 | |
with: | |
env-file: .github/.env | |
- name: Set up Go ${{ env.GO_VERSION }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Build | |
run: make cross-mac | |
- name: Upload | |
if: ${{ github.event_name == 'release' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cri-dockerd | |
retention-days: 5 | |
path: | | |
packaging/static/**/**/**/*.tgz |