Skip to content

Commit 390df24

Browse files
committed
fix(cicd): forgot to change the refs to master in code
1 parent f6feded commit 390df24

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: CI
22

33
# Controls when the action will run.
44
on:
5-
# Triggers the workflow on push or pull request events but only for the master branch
5+
# Triggers the workflow on push or pull request events but only for the default branch
66
push:
7-
branches: [ master ]
7+
branches: [ main ]
88
pull_request:
9-
branches: [ master ]
9+
branches: [ main ]
1010

1111
# Allows you to run this workflow manually from the Actions tab
1212
workflow_dispatch:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Source: https://github.com/github/gitignore/blob/master/Python.gitignore
2+
# Source: https://github.com/github/gitignore/blob/main/Python.gitignore
33
#
44

55
# Byte-compiled / optimized / DLL files

data/io.github.mightycreak.Diffuse.appdata.xml.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323

2424
<screenshots>
2525
<screenshot type="default">
26-
<image type="source">https://github.com/MightyCreak/diffuse/raw/master/docs/images/screenshot_v0.7.7_main_window.png</image>
26+
<image type="source">https://github.com/MightyCreak/diffuse/raw/main/docs/images/screenshot_v0.7.7_main_window.png</image>
2727
<caption>Main window</caption>
2828
</screenshot>
2929
<screenshot>
30-
<image type="source">https://github.com/MightyCreak/diffuse/raw/master/docs/images/screenshot_v0.7.7_about_window.png</image>
30+
<image type="source">https://github.com/MightyCreak/diffuse/raw/main/docs/images/screenshot_v0.7.7_about_window.png</image>
3131
<caption>About window</caption>
3232
</screenshot>
3333
</screenshots>

docs/developers/release-process.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@ few manual steps.
3939
- Release title: the tag (e.g. `v1.2.3`)
4040
- Description:
4141
- For the first paragraph, paste the first paragraph from the release notes
42-
- For the second paragraph, got to [CHANGELOG.md](https://github.com/MightyCreak/diffuse/blob/master/CHANGELOG.md)
42+
- For the second paragraph, got to [CHANGELOG.md](https://github.com/MightyCreak/diffuse/blob/main/CHANGELOG.md)
4343
and copy the URL anchor to the new release, then add this sentence
4444
(adapt the changelog link):
4545
> For a more detailed list of changes, see the
46-
> [changelog](https://github.com/MightyCreak/diffuse/blob/master/CHANGELOG.md#xyz---yyyy-mm-dd).
46+
> [changelog](https://github.com/MightyCreak/diffuse/blob/main/CHANGELOG.md#xyz---yyyy-mm-dd).
4747
3. Publish release
4848

4949
## Create new release on Flatpak
5050

51-
1. Clone the Flathub repository: https://github.com/flathub/io.github.mightycreak.Diffuse
51+
1. Clone the Flathub repository: <https://github.com/flathub/io.github.mightycreak.Diffuse>
5252
2. Copy the contents of Diffuse's `io.github.mightycreak.Diffuse.yml` to Flathub's
5353
3. Keep Flathub's `config-opts` and `sources` sections
5454
4. In `sources` section, change the `commit` and `tag`
5555
5. Create commit with changes and push to `master`
56-
6. Check the build on Flathub: https://flathub.org/builds/
56+
6. Check the build on Flathub: <https://flathub.org/builds/>
5757
7. When it's done and successful, publish the build

0 commit comments

Comments
 (0)