Skip to content

Commit

Permalink
feat: run this pipeline once at a time
Browse files Browse the repository at this point in the history
  • Loading branch information
Rouven Himmelstein committed Jan 24, 2024
1 parent 927f573 commit c330a78
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Container release pipeline


on:
push:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
Expand All @@ -8,11 +10,18 @@ on:
schedule:
- cron: "0 0 * * 0" # weekly at sunday night


# Avoid running this workflow multiple times at the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true


env:
CONTAINER_FILE: ./Containerfile
IMAGE_NAME: rouhim/sons-of-the-forest-server
IMAGE_TAG: latest


jobs:


Expand Down

0 comments on commit c330a78

Please sign in to comment.