Skip to content

Commit

Permalink
💚 Updates github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rickstaa committed Jan 12, 2021
1 parent 07fe49d commit 1c1d507
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,13 @@ jobs:
reporter: github-check
level: warning
locale: "US"
alex:
name: runner / alex
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: reviewdog/action-alex@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-check
level: warning
8 changes: 6 additions & 2 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
name: Docker Image CI
on: [push]
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag rickstaa-action-create-tag:$(date +%s)
run: docker build . --file Dockerfile --tag ${{ github.repository }}:$(date +%s)

0 comments on commit 1c1d507

Please sign in to comment.