Skip to content

Commit

Permalink
Switch Deployment action
Browse files Browse the repository at this point in the history
  • Loading branch information
sithlord48 committed Feb 21, 2023
1 parent 192270e commit 68375e2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,21 +225,21 @@ jobs:
uses: actions/download-artifact@v3
- name: Deploy Continuous
if: github.ref == 'refs/heads/master'
uses: "marvinpinto/action-automatic-releases@latest"
uses: softprops/action-gh-release@v1
with:
repo_token: "${{ secrets.DEPLOYTOKEN }}"
automatic_release_tag: "continuous"
token: "${{ secrets.DEPLOYTOKEN }}"
tag_name: "continuous"
prerelease: false
title: "Continuous Build"
name: "Continuous Build"
files: |
artifact/*
ff7tk-container-artifact/*
debian-artifacts/*
- name: Deploy Release
if: contains(github.ref, '/tags/v')
uses: "marvinpinto/action-automatic-releases@latest"
if: contains(github.ref, 'tags/v')
uses: softprops/action-gh-release@v1
with:
repo_token: "${{ secrets.DEPLOYTOKEN }}"
token: "${{ secrets.DEPLOYTOKEN }}"
prerelease: false
files: |
artifact/*
Expand Down

0 comments on commit 68375e2

Please sign in to comment.