Skip to content

Commit

Permalink
ci: tag main commits as latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Dec 9, 2023
1 parent 2d6bdb3 commit 36f6024
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Continuous Deployment

on:
push:
branches:
- main

publish:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'

steps:
- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: 'latest'
prerelease: true
title: 'Development Build'

0 comments on commit 36f6024

Please sign in to comment.