Releases.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <NuxtLayout name="guides">
  3. <template #intro>
  4. <div class="max-w-xl">
  5. <h2 class="text-4xl font-extrabold text-gray-100 sm:text-5xl sm:tracking-tight lg:text-6xl">
  6. Software Releases
  7. </h2>
  8. <p class="mt-5 text-xl text-indigo-300">
  9. Best practices for deploying a new software release.
  10. </p>
  11. </div>
  12. </template>
  13. <template #links>
  14. <div class="mt-10 w-full max-w-xs lg:mt-0">
  15. <label for="currency" class="block text-2xl font-medium text-indigo-400">
  16. Recommended Links
  17. </label>
  18. <div class="flex flex-col mt-1.5 pl-3 relative text-indigo-200">
  19. <div>
  20. ↳ <NuxtLink to="/guides/veracrypt" class="hover:underline">
  21. Install VeraCrypt
  22. </NuxtLink>
  23. </div>
  24. <div>
  25. ↳ <NuxtLink>
  26. Nuxt Link #2
  27. </NuxtLink>
  28. </div>
  29. <div>
  30. ↳ <NuxtLink>
  31. Nuxt Link #3
  32. </NuxtLink>
  33. </div>
  34. </div>
  35. </div>
  36. </template>
  37. <!-- Page Section -->
  38. <template #main>
  39. <section class="py-10 max-w-5xl mx-auto">
  40. <div class="mt-3 p-5 font-medium bg-gray-100 border-4 border-gray-300 rounded-xl">
  41. Publishes to Git.
  42. <small class="block">
  43. NOTE: This will work for ANY git system.
  44. </small>
  45. </div>
  46. <pre class="mt-5 p-5 bg-yellow-100 border-4 border-yellow-300 rounded-xl">
  47. <code>git tag -a vYY.MM.DD -m "&lt;short-description&gt;"
  48. git push origin &lt;tagname&gt;
  49. tar cvzf build/&lt;app-name&gt;-YYMMDD.tar.gz dist
  50. </code></pre>
  51. </section>
  52. </template>
  53. </NuxtLayout>
  54. </template>