mirror of
https://github.com/RetroDECK/MAME.git
synced 2024-11-25 06:05: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:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
||||||
|
@ -60,7 +62,7 @@ jobs:
|
||||||
|
|
||||||
- name: Get date
|
- name: Get date
|
||||||
id: 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
|
- name: Publish the artifacts in a release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
|
|
Loading…
Reference in a new issue