summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e43cd792caa35c8a3c350e4914884b98a2c66192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
build:
  stage: build
  only:
    - tags

  image: nixpkgs/nix

  script:
    - nix-shell
    - make build

  artifacts:
    paths:
      - bazel-bin/app/java/dnsproxy.apk

release:
  stage: release
  only:
    - tags

  needs:
    - job: build
      artifacts: true

  image: curlimages/curl:latest

  script:
    - 'curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file bazel-bin/app/java/dnsproxy.apk "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/apk/${CI_COMMIT_TAG}/dnsproxy.apk"'