mirror of
https://github.com/RetroDECK/MAME.git
synced 2024-11-21 20:35:37 +00:00
WORKFLOW: avoiding loops
This commit is contained in:
parent
facd7680ab
commit
4ce2c9769e
4
.github/workflows/build_mame.yml
vendored
4
.github/workflows/build_mame.yml
vendored
|
@ -2,6 +2,8 @@ name: "Build MAME"
|
|||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
|
@ -60,7 +62,7 @@ jobs:
|
|||
|
||||
- name: Get date
|
||||
id: date
|
||||
run: echo "DATE=$(date +'%d%m%y.%H%M%S')" >> $GITHUB_ENV
|
||||
run: echo "DATE=$(date +'%d%m%y.%S')" >> $GITHUB_ENV
|
||||
|
||||
- name: Publish the artifacts in a release
|
||||
uses: ncipollo/release-action@v1
|
||||
|
|
Loading…
Reference in a new issue