Skip to content

Commit

Permalink
feat(ci/cd): Add Build github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
annelhote committed Jun 6, 2024
1 parent dd71081 commit bf2796c
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
.mypy*
.vscode
venv
60 changes: 60 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@

name: Production release

on:
push:
tags:
- '*'

env:
MM_NOTIFICATION_CHANNEL: 'bso-bot'

jobs:
publish-ghcr:
name: Docker image
runs-on: ubuntu-latest
steps:
- name: 🏁 Checkout
uses: actions/checkout@v3

- name: 🔑 Login docker
run: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}

- name: 🐋 Build docker image
run: make docker-build

- name: 📦 Push docker image
run: make docker-push

release:
name: Release new version
runs-on: ubuntu-latest
needs: publish-ghcr
steps:
- name: 🏁 Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: 🏷️ Get tag
id: tag
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT

- name: 📦 Create release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag.outputs.tag }}
name: ${{ steps.tag.outputs.tag }}

notify:
needs: release
if: always()
runs-on: ubuntu-latest
steps:
- uses: dataesr/mm-notifier-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN}}
mattermost_channel: ${{ env.MM_NOTIFICATION_CHANNEL}}
mattermost_webhook_url: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
.mypy*
.vscode
venv
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

![GitHub](https://img.shields.io/github/license/dataesr/harvest-openalex)
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/dataesr/harvest-openalex)
![Build](https://github.com/dataesr/harvest-openalex/actions/workflows/build.yml/badge.svg)

## Release
To create a new release:
Expand Down

0 comments on commit bf2796c

Please sign in to comment.