History of the source control web service
This is a timeline of GitHub, a web-based Git or version control repository and Internet hosting service. … Wikipedia
🌐
Wikipedia
en.wikipedia.org › wiki › Timeline_of_GitHub
Timeline of GitHub - Wikipedia
January 18, 2026 - This is a timeline of GitHub, a web-based Git or version control repository and Internet hosting service.
🌐
GitHub
github.com › marketplace › actions › auto-generate-next-release-tag-by-date
Auto Generate Next Release Tag by Date · Actions · GitHub Marketplace · GitHub
name: Create Release on: push jobs: deploy: runs-on: ubuntu-latest steps: - name: Checkout branch uses: actions/checkout@v2 - name: Generate release tag id: generate_release_tag uses: alexvingg/next-release-tag@v1.0.3 with: github_token: ${{ secrets.GITHUB_TOKEN }} tag_prefix: '' - name: Create Release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ steps.generate_release_tag.outputs.release_tag }} release_name: Release ${{ steps.generate_release_tag.outputs.release_tag }} ... Auto Generate Next Release Tag by Date is not certified by GitHub.
🌐
GitHub
github.com › marketplace › actions › next-release-date
Next Release Date · Actions · GitHub Marketplace · GitHub
Next Release Date is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation. You can’t perform that action at this time.
🌐
GitHub
docs.github.com › en › repositories › releasing-projects-on-github › about-releases
About releases - GitHub Docs
When viewing the details for a release, the creation date for each release asset is shown next to the release asset.
🌐
Wikipedia
en.wikipedia.org › wiki › GitHub
GitHub - Wikipedia
2 days ago - GitHub Actions was officially launched on November 13, 2019. It was first announced in October 2018 at GitHub Universe as a way to automate workflows, but the full general availability (GA) release came a year later in 2019.
🌐
GitHub
github.com › marketplace › actions › get-the-latest-release-upload-url-tag-date
Get the latest release upload url, tag, date · Actions · GitHub Marketplace · GitHub
Get the latest release upload url, tag, date is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation. You can’t perform that action at this time.
🌐
GitHub
github.com › marketplace › actions › github-release-data
Github release data · Actions · GitHub Marketplace · GitHub
Github release data is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation. You can’t perform that action at this time.
Find elsewhere
🌐
GitHub
github.blog › home › changelogs › github actions: early february 2026 updates
GitHub Actions: Early February 2026 updates - GitHub Changelog
February 5, 2026 - Editor’s note (February 5, 2026): Corrected a typo in the date that mistakenly said March 2025. The GitHub Actions Runner Scale Set Client is fully open source and available for you to explore the source code and adapt the implementation to ...
🌐
GitHub
github.com › actions › create-release
GitHub - actions/create-release: An Action to create releases via the GitHub Release API · GitHub
March 4, 2021 - This will create a Release, as well as a release event, which could be handled by a third party service, or by GitHub Actions for additional uses, for example the @actions/upload-release-asset GitHub Action.
Starred by 1.4K users
Forked by 328 users
Languages   JavaScript
🌐
GitHub
github.blog › home › changelogs › github actions: early april 2026 updates
GitHub Actions: Early April 2026 updates - GitHub Changelog
2 weeks ago - Actions Runner Controller release 0.14.0 · actions · Self-hosted runner minimum version enforcement paused · actions · Actions OIDC tokens now support repository custom properties · actions · GitHub Actions now supports uploading and downloading non-zipped artifacts ·
🌐
GitHub
github.blog › home › changelogs › upcoming breaking changes and releases for github actions
Upcoming breaking changes and releases for GitHub Actions - GitHub Changelog
April 30, 2025 - Additionally, we’ve released updates to Actions runner controller designed to improve performance, customization, and compatibility with evolving deployment strategies. As part of our commitment to maintaining up-to-date infrastructure, we’re retiring older images and encouraging users ...
🌐
GitHub
github.com › marketplace › actions › create-release
Create Release · Actions · GitHub Marketplace · GitHub
When enabled, the action will first create a draft, upload artifacts, then publish the release. ... Indicates if the release should be the "latest" release or not. legacy specifies that the latest release should be determined based on the release creation date and higher semantic version.
🌐
GitHub
github.blog › home › changelogs › github actions: late march 2026 updates
GitHub Actions: Late March 2026 updates - GitHub Changelog
4 weeks ago - Actions Runner Controller release 0.14.0 · actions · Self-hosted runner minimum version enforcement paused · actions · Actions OIDC tokens now support repository custom properties · actions · GitHub Actions now supports uploading and downloading non-zipped artifacts ·
🌐
GitHub
github.blog › home › changelogs › notice of upcoming releases and breaking changes for github actions
Notice of upcoming releases and breaking changes for GitHub Actions - GitHub Changelog
April 30, 2025 - Announcements have been posted in the actions/cache and actions/toolkit repositories with additional information on the migration. Note that this does not affect GitHub Enterprise Server customers, you can continue to use all versions without failure. Brownouts: To raise awareness of the upcoming deprecation, we have scheduled brownouts for the following dates/times, builds that are scheduled to run during the brownout periods will fail.
🌐
TechCrunch
techcrunch.com › home › github launches actions, its workflow automation tool
GitHub launches Actions, its workflow automation tool | TechCrunch
October 16, 2018 - And there are now over 96 million of those on GitHub, so that makes for a lot of potential actions that will be available from the start. With Actions, which is now in limited public beta, developers can set up the workflow to build, package, release, update and deploy their code without having to run the code themselves.
🌐
GitHub
github.com › actions › runner › releases
Releases · actions/runner
2 weeks ago - Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Author   actions
🌐
GitHub
github.com › actions › action-versions › releases
Releases · actions/action-versions
This commit was created on GitHub.com and signed with GitHub’s verified signature. ... Learn about vigilant mode. ... There was an error while loading. Please reload this page. ... Remove old versions from action cache.
Author   actions
Top answer
1 of 4
49

My experience has been the opposite of what was described here on the forum. When tested:

  • If the release is created from "Draft a new release" button on the /releases page, both events will trigger, as the release goes from state "draft" to "published".
  • If the release is created by scripts like release-it, bypassing "draft" stage and becoming "published" directly, only release:published will trigger

So apparently a release can be published without being created. Weird indeed. I'd go with published.

2 of 4
17

In case you are trying to capture the creation and publishing of a release triggered from a Github Action into another workflow, then it is not gonna work.

The solution is to unify both workflows into a single one so that after the release is created the next workflow continues.

Source: https://twitter.com/ethomson/status/1183838077166477316

Example:

name: Create Release and Publish

# Trigger the create release workflow
on:
  push:
    tags:
      - 'v*'

jobs:
  release:
    name: Create Release
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v2
      - name: Create Release
        id: create_release
        uses: actions/create-release@v1
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          tag_name: ${{ github.ref }}
          release_name: Release ${{ github.ref }}
          draft: false
          prerelease: false

  publish-gpr:
    needs: release # After release is created then run the second workflow
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v1
        with:
          node-version: 10
          registry-url: https://npm.pkg.github.com/
      - run: npm ci
      - run: npm publish
        env:
          NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}