Skip to content

Commit

Permalink
release dates
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesread committed Jan 14, 2024
1 parent 6278165 commit 99b9215
Showing 1 changed file with 23 additions and 19 deletions.
42 changes: 23 additions & 19 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,26 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 16

- run: npm update

- name: make
run: make

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
dist/*
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 16

- run: npm update

- name: make
run: make

- name: get date
run: |
echo "DATE=$(date +'%Y.%m.%d')" >> "$GITHUB_ENV"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ env.DATE }}-${{ github.sha }}"
prerelease: true
title: "${{ env.DATE }}-${{ github.sha }}"
files: |
webui.tgz

0 comments on commit 99b9215

Please sign in to comment.