Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
Linter wasn't running at all due to being targeted at "master" branch
and this project's default branch is now called "main". Update triggers
for test workflow and build container workflow.
  • Loading branch information
mehaase committed Aug 27, 2023
1 parent 0e9d17d commit 6227357
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 59 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-push-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
name: Publish Docker image on publish of release

on:
release:
types: [published]
workflow_dispatch:
push:
branches: [main]
tags:
- "v*"

jobs:
push_to_registries:
Expand Down
55 changes: 0 additions & 55 deletions .github/workflows/linter.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: TRAM Tests

on:
push:
branches: [master, develop]
branches: [main]
pull_request:

jobs:
Expand Down

0 comments on commit 6227357

Please sign in to comment.