2023-03-11 19:04:13 +01:00
|
|
|
name: Flatpak release job
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
2023-03-11 20:11:09 +01:00
|
|
|
ryujinx_version:
|
2023-03-11 19:04:13 +01:00
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
|
|
|
|
|
|
|
|
concurrency: flatpak-release
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
env:
|
|
|
|
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
|
|
|
|
GIT_COMMITTER_NAME: "RyujinxBot"
|
|
|
|
GIT_COMMITTER_EMAIL: "61127645+RyujinxBot@users.noreply.github.com"
|
2023-04-26 05:12:19 +02:00
|
|
|
RYUJINX_PROJECT_FILE: "src/Ryujinx/Ryujinx.csproj"
|
2023-03-11 19:04:13 +01:00
|
|
|
NUGET_SOURCES_DESTDIR: "nuget-sources"
|
2023-03-11 20:11:09 +01:00
|
|
|
RYUJINX_VERSION: "${{ inputs.ryujinx_version }}"
|
2023-03-11 19:04:13 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
path: Ryujinx
|
|
|
|
|
|
|
|
- uses: actions/setup-dotnet@v3
|
|
|
|
with:
|
|
|
|
global-json-file: Ryujinx/global.json
|
|
|
|
|
|
|
|
- name: Get version info
|
|
|
|
id: version_info
|
|
|
|
working-directory: Ryujinx
|
|
|
|
run: |
|
2023-03-12 10:42:33 +01:00
|
|
|
echo "git_hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
|
2023-03-11 19:04:13 +01:00
|
|
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: flathub/org.ryujinx.Ryujinx
|
|
|
|
token: ${{ secrets.RYUJINX_BOT_PAT }}
|
|
|
|
submodules: recursive
|
|
|
|
path: flathub
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: python -m pip install PyYAML lxml
|
|
|
|
|
|
|
|
- name: Restore Nuget packages
|
|
|
|
run: dotnet restore Ryujinx/${{ env.RYUJINX_PROJECT_FILE }}
|
|
|
|
|
|
|
|
- name: Generate nuget_sources.json
|
|
|
|
shell: python
|
|
|
|
run: |
|
|
|
|
from pathlib import Path
|
|
|
|
import base64
|
|
|
|
import binascii
|
|
|
|
import json
|
|
|
|
import os
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
sources = []
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 20:11:09 +01:00
|
|
|
for path in Path(os.environ['NUGET_PACKAGES']).glob('**/*.nupkg.sha512'):
|
2023-03-11 19:04:13 +01:00
|
|
|
name = path.parent.parent.name
|
|
|
|
version = path.parent.name
|
|
|
|
filename = '{}.{}.nupkg'.format(name, version)
|
|
|
|
url = 'https://api.nuget.org/v3-flatcontainer/{}/{}/{}'.format(name, version, filename)
|
|
|
|
|
|
|
|
with path.open() as fp:
|
|
|
|
sha512 = binascii.hexlify(base64.b64decode(fp.read())).decode('ascii')
|
|
|
|
|
|
|
|
sources.append({
|
|
|
|
'type': 'file',
|
|
|
|
'url': url,
|
|
|
|
'sha512': sha512,
|
|
|
|
'dest': os.environ['NUGET_SOURCES_DESTDIR'],
|
|
|
|
'dest-filename': filename,
|
|
|
|
})
|
|
|
|
|
|
|
|
with open('flathub/nuget_sources.json', 'w') as fp:
|
|
|
|
json.dump(sources, fp, indent=4)
|
|
|
|
|
|
|
|
- name: Update flatpak metadata
|
|
|
|
id: metadata
|
|
|
|
env:
|
2023-03-12 10:42:33 +01:00
|
|
|
RYUJINX_GIT_HASH: ${{ steps.version_info.outputs.git_hash }}
|
2023-03-11 19:04:13 +01:00
|
|
|
shell: python
|
|
|
|
run: |
|
|
|
|
import hashlib
|
|
|
|
import hmac
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import yaml
|
|
|
|
from datetime import datetime
|
|
|
|
from lxml import etree
|
2023-03-12 10:42:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Ensure we don't destroy multiline strings
|
|
|
|
def str_presenter(dumper, data):
|
|
|
|
if len(data.splitlines()) > 1:
|
|
|
|
return dumper.represent_scalar("tag:yaml.org,2002:str", data, style="|")
|
|
|
|
return dumper.represent_scalar("tag:yaml.org,2002:str", data)
|
|
|
|
|
|
|
|
|
|
|
|
yaml.representer.SafeRepresenter.add_representer(str, str_presenter)
|
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
yaml_file = "flathub/org.ryujinx.Ryujinx.yml"
|
|
|
|
xml_file = "flathub/org.ryujinx.Ryujinx.appdata.xml"
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
with open(yaml_file, "r") as f:
|
|
|
|
data = yaml.safe_load(f)
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
for source in data["modules"][0]["sources"]:
|
|
|
|
if type(source) is str:
|
|
|
|
continue
|
|
|
|
if (
|
|
|
|
source["type"] == "git"
|
|
|
|
and source["url"] == "https://github.com/Ryujinx/Ryujinx.git"
|
|
|
|
):
|
|
|
|
source["commit"] = os.environ['RYUJINX_GIT_HASH']
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
is_same_version = data["modules"][0]["build-options"]["env"]["RYUJINX_VERSION"] == os.environ['RYUJINX_VERSION']
|
|
|
|
|
|
|
|
with open(os.environ['GITHUB_OUTPUT'], "a") as gh_out:
|
|
|
|
if is_same_version:
|
|
|
|
gh_out.write(f"commit_message=Retry update to {os.environ['RYUJINX_VERSION']}")
|
|
|
|
else:
|
|
|
|
gh_out.write(f"commit_message=Update to {os.environ['RYUJINX_VERSION']}")
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
if not is_same_version:
|
|
|
|
data["modules"][0]["build-options"]["env"]["RYUJINX_VERSION"] = os.environ['RYUJINX_VERSION']
|
|
|
|
|
|
|
|
with open(yaml_file, "w") as f:
|
|
|
|
yaml.safe_dump(data, f, sort_keys=False)
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
parser = etree.XMLParser(remove_blank_text=True)
|
|
|
|
tree = etree.parse(xml_file, parser)
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
root = tree.getroot()
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
releases = root.find("releases")
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
element = etree.Element("release")
|
|
|
|
element.set("version", os.environ['RYUJINX_VERSION'])
|
|
|
|
element.set("date", datetime.now().date().isoformat())
|
|
|
|
releases.insert(0, element)
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
# Ensure 4 spaces
|
|
|
|
etree.indent(root, space=" ")
|
2023-03-11 19:13:40 +01:00
|
|
|
|
2023-03-11 19:04:13 +01:00
|
|
|
with open(xml_file, "wb") as f:
|
|
|
|
f.write(
|
|
|
|
etree.tostring(
|
|
|
|
tree,
|
|
|
|
pretty_print=True,
|
|
|
|
encoding="UTF-8",
|
|
|
|
doctype='<?xml version="1.0" encoding="UTF-8"?>',
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
- name: Push flatpak update
|
|
|
|
working-directory: flathub
|
|
|
|
env:
|
|
|
|
COMMIT_MESSAGE: ${{ steps.metadata.outputs.commit_message }}
|
|
|
|
run: |
|
|
|
|
git config user.name "${{ env.GIT_COMMITTER_NAME }}"
|
|
|
|
git config user.email "${{ env.GIT_COMMITTER_EMAIL }}"
|
|
|
|
git add .
|
|
|
|
git commit -m "$COMMIT_MESSAGE"
|
2023-04-26 05:12:19 +02:00
|
|
|
git push origin master
|