A cheap attempt at a native Bluesky client for Android

workflows: generate unique links

+4 -1
+4 -1
generate-root.sh
··· 3 3 # Get the current UNIX timestamp 4 4 TIMESTAMP=$(date +%s) 5 5 6 + # Move APK file to its new home 7 + mv monarch-release.apk monarch-release-$TIMESTAMP.apk 8 + 6 9 # Define the output filename 7 10 OUTPUT_FILE="index.html" 8 11 ··· 17 20 </head> 18 21 <body> 19 22 <!-- File generated at UNIX timestamp: $TIMESTAMP --> 20 - <a href="/monarch-release.apk">Download Monarch APK</a> 23 + <a href="/monarch-release-$TIMESTAMP.apk">monarch-release-$TIMESTAMP.apk</a> 21 24 </body> 22 25 </html> 23 26 EOF