icu/.github
Mihai Nita 0bb0b8e364 ICU-22606 Create full release from CI - workflow files
The Ubuntu and Fedora files are very similar.
But I am not sure (yet) what is the best way to share.

The files uploaded to the GitHub Release use the exact same names as before.
The .jar files are binary identical to the ones that go to Maven (checked).

The Fedora Docker image should be built and uploaded from a dev machine.
There is a workflow (from GitHub) doing that, but has a warning that:
> This workflow uses actions that are not certified by GitHub.
> They are provided by a third-party and are governed by
> separate terms of service, privacy policy, and support documentation.
2024-09-30 13:44:26 -07:00
..
workflows ICU-22606 Create full release from CI - workflow files 2024-09-30 13:44:26 -07:00
adaboost.json ICU-22100 Incorporate BudouX into ICU (C++) 2022-12-02 10:11:06 -08:00
data-filter.json ICU-22847 Migrate ADO pipelines to GHA 2024-09-06 11:52:01 +05:30
dependabot.yml ICU-22482 Hash-pin GHA, add dependabot to keep them updated 2024-03-20 22:14:52 -07:00
Dockerfile_fedora ICU-22606 Create full release from CI - workflow files 2024-09-30 13:44:26 -07:00
lstm_for_th_my.json ICU-21569 LSTM Part 3 Add Java implementation 2021-05-08 21:15:44 -07:00
pull_request_template.md ICU-22722 update PR template for ICU 77 2024-09-25 14:31:10 -07:00
README.md ICU-22606 Create full release from CI - workflow files 2024-09-30 13:44:26 -07:00

How to create a Fedora docker image

Run

docker login ghcr.io

When prompted use these:

  • User: the github user
  • Password: the github key

Update the timestamp (20240929) with the current date, ISO style:

docker build --tag ghcr.io/unicode-org/fedora-docker-gcr:20240929 -f Dockerfile_fedora .
docker push ghcr.io/unicode-org/fedora-docker-gcr:20240929

See: https://docs.github.com/en/actions/use-cases-and-examples/publishing-packages/publishing-docker-images

Also: https://stackoverflow.com/questions/64033686/how-can-i-use-private-docker-image-in-github-actions

To consider: generate and publish the docker image from a GitHub action.