Skip to content

Commit

Permalink
Create publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MystiPanda authored May 9, 2024
1 parent cd34b42 commit 2d905ec
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Publish
on: workflow_dispatch
permissions: write-all
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Update Tag
uses: richardsimko/update-tag@v1
with:
tag_name: script
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Release
uses: softprops/action-gh-release@v2
with:
tag_name: script
name: "Script"
token: ${{ secrets.GITHUB_TOKEN }}
files: |
set_dns.sh
unset_dns.sh

0 comments on commit 2d905ec

Please sign in to comment.