* . *
  • About
  • Advertise
  • Privacy & Policy
  • Contact
Saturday, May 9, 2026
Earth-News
  • Home
  • Business
  • Entertainment

    Smith Entertainment Group Unveils Bold Vision to Transform Delta Center into a Premier Dual-Sport Hub

    From Taylor Swift to the Oscars, 400-year-old ‘Hamlet’ flourishes in the age of TikTok – Audacy

    How Social Network Currency is Launching a Grad’s Career in Entertainment Journalism

    Live Nation Entertainment Stock Soars 7% Today – Key Insights You Can’t Miss

    AMC Entertainment Grapples with Rapid Share Dilution as Market Pressures Mount

    ARRI Unveils Omnibar LED Linear Fixture Revolutionizing Film, Live Entertainment, and Content Creation

  • General
  • Health
  • News

    Cracking the Code: Why China’s Economic Challenges Aren’t Shaking Markets, Unlike America’s” – Bloomberg

    Trump’s Narrow Window to Spread the Truth About Harris

    Trump’s Narrow Window to Spread the Truth About Harris

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • Science
  • Sports
  • Technology

    KULR Technology Group to Host Q1 2026 Earnings Call on May 14 at 4:30 p.m. ET

    NCR Voyix Set to Dazzle at the 21st Annual Needham Technology, Media & Consumer Conference

    Danville High School’s Automotive Technology Classes Get a Boost with New Vehicle from Public School Foundation

    Seagate Technology Holdings PLC $STX Position Increased by Swedbank AB – MarketBeat

    Retail CIOs Risk Wasted AI Spend Without Data Flow Visibility Across the Technology Stack, Finds Info-Tech Research Group – PR Newswire

    Inside China’s High-Tech Ambush: Unveiling the Rise of the ‘Silicon Curtain

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
No Result
View All Result
  • Home
  • Business
  • Entertainment

    Smith Entertainment Group Unveils Bold Vision to Transform Delta Center into a Premier Dual-Sport Hub

    From Taylor Swift to the Oscars, 400-year-old ‘Hamlet’ flourishes in the age of TikTok – Audacy

    How Social Network Currency is Launching a Grad’s Career in Entertainment Journalism

    Live Nation Entertainment Stock Soars 7% Today – Key Insights You Can’t Miss

    AMC Entertainment Grapples with Rapid Share Dilution as Market Pressures Mount

    ARRI Unveils Omnibar LED Linear Fixture Revolutionizing Film, Live Entertainment, and Content Creation

  • General
  • Health
  • News

    Cracking the Code: Why China’s Economic Challenges Aren’t Shaking Markets, Unlike America’s” – Bloomberg

    Trump’s Narrow Window to Spread the Truth About Harris

    Trump’s Narrow Window to Spread the Truth About Harris

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • Science
  • Sports
  • Technology

    KULR Technology Group to Host Q1 2026 Earnings Call on May 14 at 4:30 p.m. ET

    NCR Voyix Set to Dazzle at the 21st Annual Needham Technology, Media & Consumer Conference

    Danville High School’s Automotive Technology Classes Get a Boost with New Vehicle from Public School Foundation

    Seagate Technology Holdings PLC $STX Position Increased by Swedbank AB – MarketBeat

    Retail CIOs Risk Wasted AI Spend Without Data Flow Visibility Across the Technology Stack, Finds Info-Tech Research Group – PR Newswire

    Inside China’s High-Tech Ambush: Unveiling the Rise of the ‘Silicon Curtain

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
No Result
View All Result
Earth-News
No Result
View All Result
Home Science

How to Automatically Publish GitHub Releases From Git Tags

July 15, 2023
in Science
How to Automatically Publish GitHub Releases From Git Tags
Share on FacebookShare on Twitter

GitHub hero

GitHub Releases provide an easy to access method for end users to download versioned software binaries. You can create them manually, but it’s much easier to let GitHub Actions build them automatically using release tags created in your repository.

Using Tagged Releases

Tags are an existing feature in Git, with extended support offered by GitHub with Releases, which offer a place to host binaries with associated changelogs.

You can create a tag much like you’d make a branch, except it’s a fixed point that doesn’t move and always points to a specific commit. This is useful for creating versioned releases, and most people will create tags using semantic versioning format (Major.Minor.Patch).

Tags can be pushed to GitHub where they can be used in other automation workflows. In this case, we will be setting up a GitHub Actions script that will listen for commits containing tagged releases and automatically publish the build artifacts to a release.

Setting Up GitHub Actions

First, you’ll want to make sure you have a working GitHub Actions build, and that your build scripts are functioning properly. The exact setup for your workflow will depend on what kind of project you’re building, but generally, you don’t want to be debugging two problems at once, so you should add the release publishing once you already have working artifacts. You can read our guide to setting up a GitHub Actions build to learn more.

The first thing to do is edit the “on” section of your Actions script to also run when Tags are created. By default, you probably have the “push” event to track releases or the master branch. You’ll need to add tags, and set a filter. For all tags, simply use a wildcard:

At the end of the workflow, after everything is built, we will create the Release entry. This is a two part step—first, we will need to create a new Release object with all the metadata, and then we can use the outputted publish URL for this to upload the artifacts. You can create multiple upload steps if you have multiple artifacts.

In either case, we will want to only run these steps if the workflow is running because of a tag. We can do this with a simple if check, and check if the github.ref object is a tag, which stores the ref name of the branch or tag that triggered the workflow.

The first step is to create a Release object, which can be done with the following step. The GitHub token doesn’t need to be created manually—it’s a special token that can always be referenced from Actions scripts.

– name: Create Release
if: startsWith(github.ref, ‘refs/tags/’)
uses: actions/create-release@v1
id: create_release
with:
draft: false
prerelease: false
release_name: ${{ github.ref }}
tag_name: ${{ github.ref }}
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Note here that the changelog for the release is stored at CHANGELOG.md, which must exist for the workflow to run properly. You can edit this with each tag to change the markdown displayed by GitHub on the release page. There are tools to generate this automatically with commit messages, but most teams will have their own method of managing this anyway.

Next, you can start uploading artifacts. This uses the upload URL from the previous step, and you’ll need to define a path where it can be found along with the display name for the asset.

– name: Upload Release
if: startsWith(github.ref, ‘refs/tags/’)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: Oxide.Ext.Sanctuary/bin/Release/net48/Oxide.Ext.Sanctuary.dll
asset_name: Oxide.Ext.Sanctuary.dll
asset_content_type: application/octet-stream

Note here that the content type is set to octet-stream, which is typical for binary data like executables and DLLs. If you’re publishing a ZIP or some other kind of file, you will want to change this, though it only affects the visuals on the release page.

Now, you can commit the changes to the Actions workflow, and then create a new tag and push it to GitHub. You should see a new workflow run being created, except instead of running off the master branch, it’s running because of the tag:

Once it’s finished, you’ll see the release in the GitHub sidebar.

>>> Read full article>>>
Copyright for syndicated content belongs to the linked Source : How To Geek – https://www.howtogeek.com/devops/how-to-automatically-publish-github-releases-from-git-tags/

Tags: AutomaticallyPublishscience
Previous Post

What Are Git Submodules, and How Do You Use Them?

Next Post

In St. Louis, contamination from atomic bomb development lingers

Spokane Regional Health District Expands Hours for Opioid Treatment Services

May 9, 2026

I Just Tried Bose’s New Lifestyle Collection – The Sound Blew Me Away!

May 9, 2026

In a world that keeps telling us no, resilience becomes resistance – thealpenanews.com

May 9, 2026

Smith Entertainment Group Unveils Bold Vision to Transform Delta Center into a Premier Dual-Sport Hub

May 9, 2026

Political Science Department Wraps Up Two-Term Leadership of National Undergraduate Research Journal

May 9, 2026

KULR Technology Group to Host Q1 2026 Earnings Call on May 14 at 4:30 p.m. ET

May 9, 2026

Tyrone and Central Baseball Teams Aim for Big Wins as Underdogs

May 9, 2026

Opinion: The Regional Ecological Summit and the Making of a Central Asian Voice – The Times Of Central Asia

May 8, 2026

Revolutionizing Mexican Poultry Science: Breakthroughs and Innovations Driving the Future

May 8, 2026

Inside the ‘Beehive’ School: The Secrets Behind Utah’s Reign as the Top High School

May 8, 2026

Categories

Archives

May 2026
M T W T F S S
 123
45678910
11121314151617
18192021222324
25262728293031
« Apr    
Earth-News.info

The Earth News is an independent English-language daily published Website from all around the World News

Browse by Category

  • Business (20,132)
  • Ecology (1,206)
  • Economy (1,227)
  • Entertainment (22,104)
  • General (21,413)
  • Health (10,261)
  • Lifestyle (1,239)
  • News (22,149)
  • People (1,228)
  • Politics (1,247)
  • Science (16,441)
  • Sports (21,725)
  • Technology (16,211)
  • World (1,218)

Recent News

Spokane Regional Health District Expands Hours for Opioid Treatment Services

May 9, 2026

I Just Tried Bose’s New Lifestyle Collection – The Sound Blew Me Away!

May 9, 2026
  • About
  • Advertise
  • Privacy & Policy
  • Contact

© 2023 earth-news.info

No Result
View All Result

© 2023 earth-news.info

No Result
View All Result

© 2023 earth-news.info

Go to mobile version