Fix made Windows release #42
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Announce a release | |
on: | |
push: | |
tags: 'announce-[0-9]+.[0-9]+.[0-9]+' | |
concurrency: announce-a-release | |
jobs: | |
announce: | |
name: Announcements | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v3 | |
with: | |
ref: "main" | |
token: ${{ secrets.RELEASE_TOKEN }} | |
- name: Release notes | |
uses: ponylang/[email protected] | |
with: | |
entrypoint: publish-release-notes-to-github | |
env: | |
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
- name: Zulip | |
uses: ponylang/[email protected] | |
with: | |
entrypoint: send-announcement-to-pony-zulip | |
env: | |
ZULIP_API_KEY: ${{ secrets.ZULIP_RELEASE_API_KEY }} | |
ZULIP_EMAIL: ${{ secrets.ZULIP_RELEASE_EMAIL }} | |
- name: Last Week in Pony | |
uses: ponylang/[email protected] | |
with: | |
entrypoint: add-announcement-to-last-week-in-pony | |
env: | |
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
post-announcement: | |
name: Tasks to run after the release has been announced | |
needs: | |
- announce | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v3 | |
with: | |
ref: "main" | |
token: ${{ secrets.RELEASE_TOKEN }} | |
- name: Rotate release notes | |
uses: ponylang/[email protected] | |
with: | |
entrypoint: rotate-release-notes | |
env: | |
GIT_USER_NAME: "Ponylang Main Bot" | |
GIT_USER_EMAIL: "[email protected]" | |
- name: Delete announcement trigger tag | |
uses: ponylang/[email protected] | |
with: | |
entrypoint: delete-announcement-tag | |
env: | |
GIT_USER_NAME: "Ponylang Main Bot" | |
GIT_USER_EMAIL: "[email protected]" |