mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-27 03:35:15 +00:00
eef8643f28
* chore(ci): build isos * chore(ci): added image_tag for stable, updated version of action * chore(ci): moved building ISOs into separate action * chore(ci): fixed version * chore(ci): registered workflow * chore(ci): removed push * chore(ci): renamed release-please to generate_changelog * chore(ci): Added new upload action and readded push to test * chore(ci): attempting upload using rclone action * chore(ci): use colons instead of = sign * chore(ci): try with latest * chore(ci): refactored to use shell instead of action * chore(ci): forgot export * chore(ci): forgot secret access key * chore(ci): removed ACL * chore(ci): Updated isogenerator version * Update .github/workflows/build_iso.yml Co-authored-by: Jorge O. Castro <jorge.castro@gmail.com> --------- Co-authored-by: Kyle Gospodnetich <me@kylegospodneti.ch> Co-authored-by: Jorge O. Castro <jorge.castro@gmail.com>
23 lines
411 B
YAML
23 lines
411 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: write
|
|
checks: write
|
|
actions: read
|
|
packages: write
|
|
pull-requests: write
|
|
|
|
name: Generate Changelog
|
|
jobs:
|
|
release-please:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: google-github-actions/release-please-action@v4
|
|
id: release-please
|
|
with:
|
|
release-type: simple
|
|
package-name: release-please-action
|