Tebex Update Procedure
Last updated
Last updated
Navigate to the resource repository in our company GitLab.
Select Pipelines
from the navigation and find the latest job, it should have a job that is waiting for a manual trigger to run. Run the job to generate the updated resource files.
Once the job is finished a new pipeline will be created and artifacts will be available from the previous job, download them.
Extract the artifacts.zip
and you will have the [resourcename].zip
file now, upload that to the appropriate Keymaster resource, and verify that the upload is successfully processed after a few minutes. You will see the download button re-enabled if the Keymaster encryption process was successful. While processing the button is disabled and greyed out.
Download new/updated resource to your repository folder and extracting it. If it's an update, replace the existing resource with the one you just downloaded.
Compress the updated resource to a .zip
file and re-upload to the corresponding resource in Keymaster. After a few minutes, refresh the page to verify that the resource has been successfully uploaded. When you're done, delete the .zip
file.
Open VSCode, and in the Explorer tab, select Open Folder
and select the updated resource's folder.
Click on the Source Control
tab, enter your commit message, then press Commit & Push
as shown. In the Output
tab along the bottom, it should show a success message if everything pushed correctly.
Alternatively, if you do not have VSCode, you can also push the update to GitLab by opening a terminal in your updated resource's folder and executing the following commands:
git add .
git commit -m 'your commit message here'
git push origin main