💾 Archived View for zigford.org › making-a-release-on-github.gmi captured on 2023-11-04 at 11:29:56. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-03-20)

-=-=-=-=-=-=-

about

links

scripts

Sharing linux/windows scripts and tips

Making a release on GitHub

August 20, 2019 — Jesse Harris

Today's journey is using git and github to release PwshBlog The following are my notes on the matter.

~~~

Making an archive

Normally when you make a release, you want to make an archive of the release available for people to download. You could use git's built-in tags feature alone, but that will include other bits of your repository that you probably don't want to include.

Enter git archive

The following are steps to creating the archive

```

.gitignore export-ignore

appveyor.yml export-ignore

```

```

git tag -a v0.9.0

```

```

git archive --format=zip --prefix=PwshBlog/ v0.9.0 -o v0.9.0.zip

```

Tags:

git

pwshblog

github

© Jesse Harris

mailto:jesse@zigford.org

Generated with bashblog, a single bash script to easily create blogs like this one

bashblog