Merge pull request #75 from trudi-group/dependabot/github_actions/act… #31
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_Release | |
on: | |
# See the documentation for more intricate event dispatch here: | |
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#on | |
push: | |
branches: | |
- "master" | |
jobs: | |
build: | |
name: Build & Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build Docker Image and Extract Build Artifacts | |
run: make gen-out | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
title: "Dev Build" | |
automatic_release_tag: "latest" | |
files: out/* | |
- name: Build and Push Docker Image | |
uses: macbre/push-to-ghcr@master | |
with: | |
image_name: ${{ github.repository_owner }}/kubo-mexport | |
github_token: ${{ secrets.GITHUB_TOKEN }} |