Skip to content

Commit

Permalink
2 Releases
Browse files Browse the repository at this point in the history
  • Loading branch information
spuder committed Nov 22, 2024
1 parent 2c5e984 commit 1784673
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/esphome.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,11 +196,20 @@ jobs:
fi
git status
- name: Release
- name: Release ${{ github.ref_name }}
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
# automatic_release_tag: "latest"
automatic_release_tag: "${{ github.ref_name }}"
prerelease: false
files: |
artifacts/**/*
- name: Release Latest
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
files: |
artifacts/**/*

0 comments on commit 1784673

Please sign in to comment.