Skip to content

Commit

Permalink
ci: update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarbukovsky committed Mar 24, 2024
1 parent 182d1ac commit 0c0690b
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,23 @@ name: Create Archive
on: [push]
jobs:
tag:
name: Tag
runs-on: ubuntu-latest
steps:
- uses: butlerlogic/[email protected]
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
tagname: "latest"
- name: Checkout code
uses: actions/checkout@v2
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: "latest"
body: |
Update
draft: false
prerelease: false
build:
runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit 0c0690b

Please sign in to comment.