Merge pull request #611 from innogames/dependabot/go_modules/github.c… #427
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: Master change | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
update_release_draft: | |
name: Update release draft description | |
runs-on: ubuntu-latest | |
steps: | |
- uses: release-drafter/release-drafter@v6 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
push_to_registry: | |
name: Push latest Docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3.6.1 | |
- name: Login to GitHub Packages Docker Registry | |
uses: docker/login-action@v3.2.0 | |
with: | |
registry: docker.pkg.github.com | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push to GitHub Packages | |
uses: docker/build-push-action@v6.5.0 | |
with: | |
push: false | |
tags: innogames/slack-bot:latest | |
reports_docs: | |
name: Update Reports, Code coverage report and docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
check-latest: true | |
go-version: stable | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Goreportcard | |
uses: creekorful/goreportcard-action@v1.0 | |
- name: Test | |
run: make test-coverage | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v4 |