Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
s3krit committed Apr 7, 2021
1 parent 832dcb1 commit 041735d
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions .github/workflows/monthly-tag.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Monthly Snapshot Tag

on:
schedule:
- cron: "0 1 1 * *"
workflow_dispatch:
# TODO: REVERT ME BEFORE MERGE
on: push
# on:
# schedule:
# - cron: "0 1 1 * *"
# workflow_dispatch:

jobs:
build:
Expand All @@ -30,14 +32,16 @@ jobs:
echo "## Changes since last snapshot (${{ steps.tags.outputs.old }})" >> Changelog.md
echo "" >> Changelog.md
./.maintain/gitlab/generate_changelog.sh ${{ steps.tags.outputs.old }} >> Changelog.md
- name: Release snapshot
id: release-snapshot
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tags.outputs.new }}
release_name: ${{ steps.tags.outputs.new }}
draft: false
prerelease: true
body_path: Changelog.md
# TODO: REVERT ME BEFORE MERGE
cat Changelog.md
# - name: Release snapshot
# id: release-snapshot
# uses: actions/create-release@latest
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ steps.tags.outputs.new }}
# release_name: ${{ steps.tags.outputs.new }}
# draft: false
# prerelease: true
# body_path: Changelog.md

0 comments on commit 041735d

Please sign in to comment.